Hi,
I need help with the VBA for this automation.
I have this data set, but I want to show and use only the last 5 digits of the Sensor number. Then I want to copy all of this data (minus the heading in row 1) to another table on the worksheet labeled "test", but I want to paste it to the first empty row of the other table as that table contains data. [HR][/HR] [TABLE="border: 0, cellpadding: 0, cellspacing: 0"]
[TD="width: 156"] [/TD]
[TD="width: 126"]A[/TD]
[TD="width: 247"]B[/TD]
[TD="width: 145"]C[/TD]
1
[/td]Date
[/td]Sensor
[/td]Temp
[/td]2
[/td]7/9/2019
[/td]1903130001000F0000000388
[/td]93.81
[/td]3
[/td]7/9/2019
[/td]1903130001000F0000000370
[/td]72.99
[/td]4
[/td]7/9/2019
[/td]1903130001000F0000000371
[/td]91.86
[/td]
[/TABLE]
[HR][/HR]
On worksheet Test: the data from table above would paste into the first empty row (5), with only last 5 digits of the sensor number showing [TABLE="border: 0, cellpadding: 0, cellspacing: 0"]
[TD="width: 156"] [/TD]
[TD="width: 126"]A[/TD]
[TD="width: 247"]B[/TD]
[TD="width: 145"]C[/TD]
1
[/td]Date
[/td]Sensor
[/td]Temp
[/td]2
[/td]Data already here
[/td]Data already here
[/td]Data already here
[/td]3
[/td]Data already here
[/td]Data already here
[/td]Data already here
[/td]4
[/td]Data already here
[/td]Data already here
[/td]Data already here
[/td]5
[/td]7/9/2019
[/td]00388
[/td]93.81
[/td]6
[/td]7/9/2019
[/td]00370
[/td]72.99
[/td]7
[/td]7/9/2019
[/td]00371
[/td]91.86
[/td]
[/TABLE]