JasonEnsor
Programmer
Hi Guys,
I have started to run in to some issues with how I am adding data to an excel workbook, excel is changing some text in to a date and time format. I thought it might be easier to setup my data in a table and set the formatting for the table in the hope that the format carries on through the table.
I recorded the following Macro after creating a table to see how to do this.
Is this the best way to do it? just adding the data to the next free row? I am assuming that Excel is automatically causing the table to expand.
Any Help would be appreciated
Regards
J.
I have started to run in to some issues with how I am adding data to an excel workbook, excel is changing some text in to a date and time format. I thought it might be easier to setup my data in a table and set the formatting for the table in the hope that the format carries on through the table.
I recorded the following Macro after creating a table to see how to do this.
Code:
Range("A5").Select
ActiveCell.FormulaR1C1 = "name"
Range("B5").Select
ActiveCell.FormulaR1C1 = "something"
Range("C5").Select
ActiveCell.FormulaR1C1 = "06/05/2013"
Is this the best way to do it? just adding the data to the next free row? I am assuming that Excel is automatically causing the table to expand.
Any Help would be appreciated
Regards
J.