Hi Pooja,
Don't apologize -- you are most certainly *not* a pain and after all,
answering questions is what we are here for
As far as using the Copy Task Field Macro that Jack Dahlgren wrote, he has a
link on the URL I listed earlier (
http://masamiki.com/project/macros.htm )
called "To Macros Installation" that explains the process well.
Jack's Copy Task Field macro takes information entered in to the *task*
Text5 field (inserted into a Task view like the Gantt chart) and copies it
into the *assignment* Text5 field (added to the Resource usage view).
Briefly, what you would do is click on the link on Jack's page to go to the
Copy Task Field page. This will take you to a page listing the actual code
for the macro.
Select all of the text on the page and copy it.
Open the Project file and choose Tools > Macro > Visual Basic Editor to open
the Visual Basic Editor (VBE). In the Project Explorer Window (left pane)
you should see a ThisProject (your filename) object and it should be
selected. You should also see a blank code window to the right. Click your
mouse into that window and paste. The code that Jack wrote should now be
there. If you have not entered data into Text5 but another field, you will
need to make a small edit to the code itself.
For example: In an earlier post you said that you had entered data into the
Text4 field. To copy that information into the assignment Text4 field you
would edit the line:
A.Text5 = t.Text5
I would change it to:
A.Text4 = t.Text4
to copy the data from the Task Text4 field to the assignment Text4 field.
Once you have made the edit you need in the code, in the VBE choose File >
Close and Return to Microsoft Project.
Back in the project file, choose Tools > Macro > Macros to open the Macros
dialog box. You should see a macro listed that includes as part of the
macro name - "CopyTaskFieldToAssignment".
Select the macro and click the Run button to run the macro.
Go to the Resource Usage view and insert the field Text4 and all of the data
you entered into the task Text4 field should now appear.
I hope this helps. Let us know how you get along.
Julie