Notifications
Announcements
If(IsBlank(ThisItem.Base);"";If(Len(Text(ThisItem.Base;"0.00000"))-Find(".";Text(ThisItem.Base;"0.00000"))=1;// Un decimal Text(ThisItem.Base*10;"0.00")&"%";// Multiplica por 10 If(Len(Text(ThisItem.Base;"0.00000"))-Find(".";Text(ThisItem.Base;"0.00000"))=2;// Dos decimales Text(ThisItem.Base*1;"0.00")&"%";// Multiplica por 1 If(Len(Text(ThisItem.Base;"0.00000"))-Find(".";Text(ThisItem.Base;"0.00000"))=3;// Tres decimales Text(ThisItem.Base/10;"0.00")&"%";// Divide por 10 If(Len(Text(ThisItem.Base;"0.00000"))-Find(".";Text(ThisItem.Base;"0.00000"))=4;// Cuatro decimales Text(ThisItem.Base/100;"0.00")&"%";// Divide por 100 Round(ThisItem.Base/1000;2)&"%"// Cinco decimales o más, redondea y divide por 1000 )))))
Text( ThisItem.Base; "0.00" )
Text( ThisItem.Base; "0,00" )
With( { _Region: If( Office365Users.UserProfileV2(User().EntraObjectId).preferredLanguage in ["pt-PT"; "pt-BR"]; "0,00"; "0.00" ); _Factor: Switch( Len( Last( Split( ThisItem.Base; "." ) ).Value ); 1; 10; 2; 1; 3; 0.01; 4; 100 ) }; Coalesce( Text( ThisItem.Base * _Factor; _Region ) & "%"; "" ) )
Not sure if this will help, but you can try using the Language() function. It can help a lot with these kinds of formatting issues when users have different regional settings.
For example, instead of hard-coding a locale, you can format the value using the current user’s language: (My language is "en-US")
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
In our never-ending quest to improve we are simplifying the forum hierarchy…
We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Kalathiya 421
WarrenBelz 386 Most Valuable Professional
MS.Ragavendar 339 Super User 2025 Season 2