I have a short text field with a record containing the text ‘Açaí Bowl.png’
I have another formula field that strips the file extension from text in this field, but instead of the expected result of ‘Açaí Bowl’, I get ‘Açaí Bong’. :smiling_face_with_halo: Somehow the last two characters of ‘Bowl’ are transforming?
Here is my formula text, which usually works fine:
IF(
OR(
RIGHT({File name}, 4) = ".jpg",
RIGHT({File name}, 4) = ".png",
RIGHT({File name}, 4) = ".pdf"
),
REPLACE({File name}, LEN({File name}) - 3, 4, ""),
IF(RIGHT({File name}, 5) = ".jpeg",
REPLACE({File name}, LEN({File name}) - 4, 5, ""),
"..."
)
)
Does it behave the same way on your base? Is there a way to prevent this? Not a huge deal since not a common case but it would be nice to know.