Hi,
I have an app that reads (only) some data from an excel file stored in a sharepoint site and one of the columns is a decimal number.
I've noticed that excel brings all the data as Text, and the problem is that when I try and convert the text to number using the Value() function it would give me a different result if the browser of the user is set up to English or Portuguese.
I've figured this behavior might be due to the different decimal separator used in each language. English uses "." (dot) and Portuguese uses "," (comma).But I can't figure how to solve it.
Has anyone dealt with this?
Note: I would not like to migrate this data in specific to a sharepoint list, I have some reasons to keep it in excel.