Upcoming database upgrades. to improve our reliability at 03:30 UTC on Feb. 25 / 7:30pm PT on Feb. 24. Some users may briefly experience slow load times or error messages. Learn more here
Mar 31, 2020 08:06 AM
I imagine there is a simple way to do this, but I need to convert a decimal number to a text percentage (0.15 > 15%) to incorporate into a concatenate formula.
Mar 31, 2020 08:10 AM
In the field you are concatenating it in, you should be able to just insert something like this:
... & ({Field with Decimal Percentage} * 100) & "% " & ...
Mar 12, 2021 11:24 AM
Sharing another version:
LEFT(ROUND({Field with Decimal Percentage}*100,2) & “%”,7)