Aug 28, 2023 08:50 AM
IF( {test3} = 1.78, "16x9", IF( {test3} = 1.00, "1x1", IF( {test3} = 0.56, "9x16", "" ) ) )
Solved! Go to Solution.
Aug 28, 2023 09:19 AM
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(
ROUND({test3}, 2) = 0.56,
"9x16",
IF(
ROUND({test3}, 2) = 0.67,
"9x16",
"New Aspect Ratio. Please add it to the formula"
)
)
)
)
Hope it helps someone else in the future.
Cheers!
Aug 28, 2023 09:19 AM
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(
ROUND({test3}, 2) = 0.56,
"9x16",
IF(
ROUND({test3}, 2) = 0.67,
"9x16",
"New Aspect Ratio. Please add it to the formula"
)
)
)
)
Hope it helps someone else in the future.
Cheers!