Sign up ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I have 4 lists:

Attribute List Task List enter image description here

and Project Tasks which contains Items (content type:Summary Task). When I add new Item in Project Tasks I need to add all Tasks (content type:Task) from my list TaskAttributeList automatically.

How can I do it?

share|improve this question

2 Answers 2

I will strongly recommend you to use event receivers and not workflows unless there is a business process involved.

Event receivers are more reliable, and will happen instant while workflows might have a delay.

You did not specify what versions of SharePoint you are using, but I am guessing 2010 from your screenshots.

These might help get you started:

Event Receiver for List Instance Create an Event Receiver

share|improve this answer

You can do it using Event Receiver or workflow. I would suggest Event Receiver.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.