Apr 17, 2018 05:47 PM
Simple issue I would hope: When calculating a division of two numbers in a row, it correctly displayed the result in decimal format. When I tried to reformat the result as a percentage, it did not move the decimal point over by two. In other words, my 0.11 was converted to .11% vs 11%. How on earth does that happen and what is the workaround?
Apr 17, 2018 09:16 PM
In your formula that calculates the percentage, multiply the dividend by 100.
fx = ({Sub COR Fee} * 100) / {Sub COR Cost}
Apr 18, 2018 07:44 AM
It’s a long-standing issue with Airtable — one slightly complicated by there now being an installed base of code built around the erroneous behavior. Until it’s decided how best to address the issue, you’re probably best off with the multiply/divide by 100 workaround…
Apr 19, 2018 01:31 PM
That works - thanks!