The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hello, I'm encountering an issue with a formula I'm using to calculate video aspect ratios in my Airtable base. I would appreciate any assistance in identifying the problem or suggesting an alternative approach. The formula I'm currently using for {t...
After some messing around I figured out that the problem was related to the decimals.I've added ROUND to the formula and it worked:IF(
ROUND({test3}, 2) = 1.78,
"16x9",
IF(
ROUND({test3}, 2) = 1.00,
"1x1",
IF(
...