I am trying to make an Airtable to easily export my product data to the proper format to then upload the csv to our website. The product subcategories need to be listed as such:
“category::subcategory”
I have a formula splitting the multiple select columns into stringified columns, then separated by comma, and so on, until I get four columns that then fit the above formatting.
However, in despite pulling from the same information and having matching formulas, I am getting the second, third, and forth column results with a floating space before the subcategory.
See image below:
Code for the first column:
IF({First Option}=BLANK(),BLANK(),{Cat} & ‘::’& {First Option})
Code for the second column:
IF({Second Option}=BLANK(),BLANK(),TRIM({Cat} & ‘::’ &{Second Option}))
It was happening with TRIM() and without it.
Any ideas?