importing project data from within excel

P

philcuddy

does anyone have some sample code that opens a project (.mpp) file from
within excel.
i have seen many examples if exporting data from project, but no code
that shows an import from project to excel.
TIA
 
J

JackD

Probably the reason there are no examples (and I am guilty of not providing
any) are that fundamentally it is the same only backwards.
So a statement such as:

myRange.value = myTask.text5

would read:

myTask.text5 = myRange.value
 
Top