Hi all,
I found another post and managed to use the concatenate formula to get the percentage field working however, with this method the value passed over does not seem to be formatted to 1 decimal like I have set.
There are 2 hidden fields which calculate the percentage of business vs personal usage.
b_percentage and p_percentage, they are a number field with 1 decimal place set.
Then I have 2 Single Text fields (business_percent_display and personal_percent_display) displaying the percentage has the formula
=CONCATENATE(b_percentage," ","%")
=CONCATENATE(p_percentage," ","%")
The result they show is .
I have also tried adding some regex in to get the first two digits as a test using the pattern \d\d
I would just like them to show the percentages with 1 decimal place like the hidden fields.
What is the best way to tackle this?
Thank you