I am learning how to use macros/vba and used the record macros function to understand how this works. For the part "Range("A31").Activate" how do I make it select the last populated cell? Since this column changes everyday- I would like to the code copy the data from this table to another.
Sub PurshToOutput()
Range("Inputtable[[#Headers],[UPC]]").Select
Selection.End(xlDown).Select
Range(Selection, Selection.End(xlUp)).Select
Range("Inputtable[UPC]").Select
Range("A31").Activate
Selection.Copy
Sheets("OUTPUT").Select
Range("Outputtable[UPC]").Select
ActiveSheet.Paste
End Sub
The problem with your code is that it is bringing unnecessary complication in my opinion. All you have to do is select the column header for which you need the last cell value. Go to the last cell, copy & paste it in the desired locaion.
You can try this to copy the last cell value:
Range("inputtable[[#Headers],[UPC]]").Select
Selection.End(xlDown).Select
Selection.Copy