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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you write VBA to a spreadsheet column 1

Status
Not open for further replies.

Pack10

Programmer
Feb 3, 2010
495
US
I have a VBA routine that runs in an Access app that reads a mailbox and builds a record in a table.
I want to port the VBA to excel and load the fields into a readsheet instead of a table.
I am doing this Just to play around with Excel VBA. So, where I have the AddNew and the field Assignment,
how would I write that to a spreadsheet column?
 
Look at the Worksheet, Cells and Range objects in the Excel VBA documentation. They are how you identify which worksheets, cells and ranges to read from or write to (whether named or not).

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top