Macro To Populate Columns

B

Bob

I have a spreadsheet that I need to populate 3 columns: Sales, ShipTo/BillTo
and
Product. What I would like to do is to create a macro that will populate
the columns based on the values I specify.

Thanks
 
K

kirkm

I have a spreadsheet that I need to populate 3 columns: Sales, ShipTo/BillTo
and
Product. What I would like to do is to create a macro that will populate
the columns based on the values I specify.

This populates a cell.

With Worksheets("YourSheetName")
..Cells(row,Column) = Your Data
End With

But how you call that and assign 'Your Data' requires more overview.

Cheers - Kirk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top