View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dick Kusleika[_3_] Dick Kusleika[_3_] is offline
external usenet poster
 
Posts: 599
Default Export to MS Project

Cathy

You'll have to be more specific about numbers 2 and 3. Here's how you do
numbers 1, 4, and 5.

Sub DoProject()

Dim prApp As MSProject.Application
Dim prProj As MSProject.Project

Set prApp = New MSProject.Application
prApp.FileOpen "\\Pm1\c\WINDOWS\Desktop\Job Schedules\MtCalvary.mpp"
Set prProj = prApp.ActiveProject

'Do numbers 2 and 3

prApp.FileSave
prApp.Quit

End Sub

Set a reference (VBE - Tools - References) to the MS Project Library.

--
Dick Kusleika
MVP - Excel
Excel Blog - Daily Dose of Excel
www.dicks-blog.com

"Cathy" wrote in message
...
Hi,
I am trying to create VB code in excel that will

1. open a specific ms project file
2. select a range of excel data
3. update the ms project file
4. save and close the ms project file
5. return to excel

Thank you for any help you can provide

Cathy