Now, my problem is that I need to turn the output, which is a string to a number, but it has a decimal so I can’t really get tonumber() to work with it as it returns nil.
-- Loop, i equals row of the table, 1 is Tokyo; Starting with 1
local lat = sheet[i][3] --> 1st City; 3rd Column -> Saved as 39.6294
print(lat) --> "39.6294"
print(tonumber(lat)) --> nil
Does anyone have any ideas on how to turn the string into a number? Thanks in advance.