
do not have much knowledge on PowerApps. I need to make the adjustment of the field display that is showing several decimal places.
the field comes from a list of Sharepoint Online in which it shows 3 and in the powerapps it shows 3,000,000, I wanted to adjust to show only 3.
You can try Rounddown function - https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-round
RoundDown(1.5999, 2) => 1.5D
or for text see https://powerapps.microsoft.com/en-us/tutorials/function-text/
Text(5.678,"#.#") becomes 5.7