Hi all,
Please help me with the following: I have an app where I am able to select a specific month by using a dropdown list and a text input where I have to add a specific number (with decimals) for the month selected.
After introducing the number, I have a submit button that add the data in a SQL database by using the following formula: Patch('[DBO].[number]', {Month: Dropdown. Selected. Value, Number: Value(text input. Text)}).
The issue is that: I want to display in the same app the number that is added with 2 decimals (I was not able to display the number with 2 decimals until now). From what I see, the data is stored in SQL as int. Is there a way that I can display the number with the 2 decimals? Thanks a lot!!!