Hi All
I was looking for some help please on a Loop i need to do, I'm quite a novice when it comes to VBA and need to learn more use for it for work.
I have built a tool that will show me the closest locations of certain store depending the lat and long, only problem is I can only put 1 location in at once.
all the data will be in a sheet called "enter data" I need a Loop to copy the data from the list one at a time into sheet1 then sort by lowest to highest and then copy the result out and repeat.
The enterdata tab will have a list with data in columns A-D and there can be multiple rows ofdata in the same format. I have just put 10 on the loop for a test but Ideallywould like to be go down as long as it needs
when I have tried the code below it either stops half way through or after in copies the first data into sheet1 on the next loop it will copy the second row of data from the data sheet below it which is not what I want it to do the data from enter data should only be entered into cells A2:D2 in sheet1 (essentially it should just recopy over the old data that was copied and pasted before)
Sub copytest()
For i = 1 To 10
Sheets("enterdata").Range("A2:D2" & i).Copy
Sheets("sheet1").Range("A2:D2").PasteSpecial Paste:=xlPasteValues
Sheets("sheet1").Range("J1", Range("J1").End(xlDown)).Sort Key1:=Range("J1"), Order1:=xlAscending, Header:=xlyes
Sheets("sheet1").Range("A2:J6").Copy
Sheets("output").Range("A2:H6" & i).PasteSpecial Paste:=xlPasteValues
Next i
Application.CutCopyMode = False
End Sub
sheet one would look like the below
[TABLE="width: 572"]
<colgroup><col width="95" style="width: 71pt; mso-width-source: userset; mso-width-alt: 3384;" span="4"><colgroup><col width="64" style="width: 48pt;" span="6"><tbody>[TR]
[TD="width: 95, bgcolor: transparent"]store [/TD]
[TD="width: 95, bgcolor: transparent"]post code [/TD]
[TD="width: 95, bgcolor: transparent"]lat[/TD]
[TD="width: 95, bgcolor: transparent"]long[/TD]
[TD="width: 64, bgcolor: transparent"]store[/TD]
[TD="width: 64, bgcolor: transparent"]lat[/TD]
[TD="width: 64, bgcolor: transparent"]long[/TD]
[TD="width: 64, bgcolor: transparent"]miles 1 [/TD]
[TD="width: 64, bgcolor: transparent"]miles 2 [/TD]
[TD="width: 64, bgcolor: transparent"]miles 3 [/TD]
[/TR]
[TR]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
</tbody>[/TABLE]
the output i would need to look like the below I don't need the formulas copied out into the output just a standard paste
[TABLE="width: 480"]
<colgroup><col width="64" style="width: 48pt;" span="10"><tbody>[TR]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]example[/TD]
[TD="width: 64, bgcolor: transparent"]lat[/TD]
[TD="width: 64, bgcolor: transparent"]long[/TD]
[TD="width: 64, bgcolor: transparent, align: right"]1[/TD]
[TD="width: 64, bgcolor: transparent, align: right"]1[/TD]
[TD="width: 64, bgcolor: transparent, align: right"]1[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[/TR]
</tbody>[/TABLE]
hope this makes sense thank you
I was looking for some help please on a Loop i need to do, I'm quite a novice when it comes to VBA and need to learn more use for it for work.
I have built a tool that will show me the closest locations of certain store depending the lat and long, only problem is I can only put 1 location in at once.
all the data will be in a sheet called "enter data" I need a Loop to copy the data from the list one at a time into sheet1 then sort by lowest to highest and then copy the result out and repeat.
The enterdata tab will have a list with data in columns A-D and there can be multiple rows ofdata in the same format. I have just put 10 on the loop for a test but Ideallywould like to be go down as long as it needs
when I have tried the code below it either stops half way through or after in copies the first data into sheet1 on the next loop it will copy the second row of data from the data sheet below it which is not what I want it to do the data from enter data should only be entered into cells A2:D2 in sheet1 (essentially it should just recopy over the old data that was copied and pasted before)
Sub copytest()
For i = 1 To 10
Sheets("enterdata").Range("A2:D2" & i).Copy
Sheets("sheet1").Range("A2:D2").PasteSpecial Paste:=xlPasteValues
Sheets("sheet1").Range("J1", Range("J1").End(xlDown)).Sort Key1:=Range("J1"), Order1:=xlAscending, Header:=xlyes
Sheets("sheet1").Range("A2:J6").Copy
Sheets("output").Range("A2:H6" & i).PasteSpecial Paste:=xlPasteValues
Next i
Application.CutCopyMode = False
End Sub
sheet one would look like the below
[TABLE="width: 572"]
<colgroup><col width="95" style="width: 71pt; mso-width-source: userset; mso-width-alt: 3384;" span="4"><colgroup><col width="64" style="width: 48pt;" span="6"><tbody>[TR]
[TD="width: 95, bgcolor: transparent"]store [/TD]
[TD="width: 95, bgcolor: transparent"]post code [/TD]
[TD="width: 95, bgcolor: transparent"]lat[/TD]
[TD="width: 95, bgcolor: transparent"]long[/TD]
[TD="width: 64, bgcolor: transparent"]store[/TD]
[TD="width: 64, bgcolor: transparent"]lat[/TD]
[TD="width: 64, bgcolor: transparent"]long[/TD]
[TD="width: 64, bgcolor: transparent"]miles 1 [/TD]
[TD="width: 64, bgcolor: transparent"]miles 2 [/TD]
[TD="width: 64, bgcolor: transparent"]miles 3 [/TD]
[/TR]
[TR]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: #DAEEF3"]copy data here[/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent"]Formual [/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[TD="bgcolor: transparent"]Formula[/TD]
[/TR]
</tbody>[/TABLE]
the output i would need to look like the below I don't need the formulas copied out into the output just a standard paste
[TABLE="width: 480"]
<colgroup><col width="64" style="width: 48pt;" span="10"><tbody>[TR]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]copy data here[/TD]
[TD="width: 64, bgcolor: transparent"]example[/TD]
[TD="width: 64, bgcolor: transparent"]lat[/TD]
[TD="width: 64, bgcolor: transparent"]long[/TD]
[TD="width: 64, bgcolor: transparent, align: right"]1[/TD]
[TD="width: 64, bgcolor: transparent, align: right"]1[/TD]
[TD="width: 64, bgcolor: transparent, align: right"]1[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]copy data here[/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[TD="bgcolor: transparent, align: right"]1[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[TD="bgcolor: transparent, align: right"]2[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[TD="bgcolor: transparent, align: right"]3[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[TD="bgcolor: transparent, align: right"]4[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"][/TD]
[TD="bgcolor: transparent"]example[/TD]
[TD="bgcolor: transparent"]lat[/TD]
[TD="bgcolor: transparent"]long[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[TD="bgcolor: transparent, align: right"]5[/TD]
[/TR]
</tbody>[/TABLE]
hope this makes sense thank you