Hi @timl , Round function didn't work for me but I succesfully tryed another approuch:
Value on Sharepoint list
R$ 1.100,00
Value on PowerApps
1100.00000000000
Round function on Powerapps
Round(Value(ThisItem.MyField);2)
=110000000000000
My povisory solution:
Substitute(ThisItem.MyField;".";",")
=1100,00000000000
So, I can use something like
Text(Value(Substitute(ThisItem.MyField;".";",")); "[$-pt-BR]R$ ###.###,00")
wich results
R$ 1.100,00.
Anyway, thanks for replying.