Hi, I am VBA Excel coder since yesterday and I am stuck. Hopefully you can help me.
I am managing sports team and want to follow players training progress.
I have made google forms page and linked it's workbook to my computers excel file to update it automatically via Data - New Query - From Web.
The Data comes in like this
[TABLE="width: 607"]
<colgroup><col span="2"><col><col span="3"><col></colgroup><tbody>[TR]
[TD]Column1[/TD]
[TD]Column2[/TD]
[TD]Column3[/TD]
[TD]Column4[/TD]
[TD]Column5[/TD]
[TD]Column6[/TD]
[TD]Column7[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]1[/TD]
[TD]Timestamp[/TD]
[TD]Name[/TD]
[TD]XXXX[/TD]
[TD]YYYYY[/TD]
[TD]ZZZZZ[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]2[/TD]
[TD]15/11/2019 14:12:02[/TD]
[TD]Player1[/TD]
[TD]1[/TD]
[TD]4[/TD]
[TD]3[/TD]
[/TR]
</tbody>[/TABLE]
The data will come in as above written. I want to write a code that looks at column 4 to fine needed condition. I have different sheets for each players, so Player1 data would copy to sheet Player1 and so on.
Best would be to copy only column 4-7 data, because I don't need first threes, but I can hide them as well, so entire row could work too.
Problems that I have discovered with different codes
Rows copy again and again - I triggered copying with active button, but it copied old data as well. I need new imported rows only.
Data copied as text - I would prefer numbers, so I can make graphics immediately. Now I need to format cells always.
I am managing sports team and want to follow players training progress.
I have made google forms page and linked it's workbook to my computers excel file to update it automatically via Data - New Query - From Web.
The Data comes in like this
[TABLE="width: 607"]
<colgroup><col span="2"><col><col span="3"><col></colgroup><tbody>[TR]
[TD]Column1[/TD]
[TD]Column2[/TD]
[TD]Column3[/TD]
[TD]Column4[/TD]
[TD]Column5[/TD]
[TD]Column6[/TD]
[TD]Column7[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]1[/TD]
[TD]Timestamp[/TD]
[TD]Name[/TD]
[TD]XXXX[/TD]
[TD]YYYYY[/TD]
[TD]ZZZZZ[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]2[/TD]
[TD]15/11/2019 14:12:02[/TD]
[TD]Player1[/TD]
[TD]1[/TD]
[TD]4[/TD]
[TD]3[/TD]
[/TR]
</tbody>[/TABLE]
The data will come in as above written. I want to write a code that looks at column 4 to fine needed condition. I have different sheets for each players, so Player1 data would copy to sheet Player1 and so on.
Best would be to copy only column 4-7 data, because I don't need first threes, but I can hide them as well, so entire row could work too.
Problems that I have discovered with different codes
Rows copy again and again - I triggered copying with active button, but it copied old data as well. I need new imported rows only.
Data copied as text - I would prefer numbers, so I can make graphics immediately. Now I need to format cells always.