K
Kc001
Hi, i'm new to VBA coding. The situation is that I have a file tha
comes in every week with the same number of column, but with differen
number of rows [i.e. one week the data have 50 rows, another might hav
200 etc...]. I would make a table [ctrl L] that consist of the entir
data set and name it 'X' to do further analysis.
Lets say if the column is always from A to Z, and I always want to nam
the table 'X', how would i write a macro for that?
So far all I got from reference books is:
Sub Test()
Range(ActiveCell, ActiveCell.End(xlDown)).Select
End Sub
Please provide an example on how to do this [and please explain th
reasoning behind the example if possible, I am new to VBA and have n
prior programming experience
comes in every week with the same number of column, but with differen
number of rows [i.e. one week the data have 50 rows, another might hav
200 etc...]. I would make a table [ctrl L] that consist of the entir
data set and name it 'X' to do further analysis.
Lets say if the column is always from A to Z, and I always want to nam
the table 'X', how would i write a macro for that?
So far all I got from reference books is:
Sub Test()
Range(ActiveCell, ActiveCell.End(xlDown)).Select
End Sub
Please provide an example on how to do this [and please explain th
reasoning behind the example if possible, I am new to VBA and have n
prior programming experience