Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exporting resource data to Access

Status
Not open for further replies.

DAVEKELLY

Technical User
Apr 15, 2001
11
AU
Article 'Using DAO to Export Data to Microsoft Access' from MS describes exporting from Project data to Access.

Defining the Access Table:
projtable.Fields.Append projtable.CreateField("Start", dbDate)

and

Exporting the data:
![Start] = task.Start

This works fine, but I am having difficulty exporting the task Resource Name data.

I have tried and failed using:

projtable.Fields.Append projtable.CreateField("Resource", dbText)

and

![Start] = Assignment.ResourceName

and numereous other combinations.

Any pointers?

Thanks

Dave



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top