Hello, I have an input field that contains a decimal number. The system language of powerapps uses a comma as the decimal separator. This number needs to be saved in a SQL SERVER database, specifically in a field defined as decimal(10,2). The language of the database is set to US English. In practice, if I save the number with a comma, it gives me an error. If I try to convert it using a substitute, it saves the number without a comma (3,5 becomes 35.00 instead of 3.5). Any ideas?
Thank you