Oh goodness - God helped me understand what the support team was saying. Wrap SUBSTITUTE in the LEFT formula. I did this: LEFT(SUBSTITUTE({CRS Num/Title},"\\"",""),8)
and it worked!!!
Sorry to bother everyone.
Oh goodness - God helped me understand what the support team was saying. Wrap SUBSTITUTE in the LEFT formula. I did this: LEFT(SUBSTITUTE({CRS Num/Title},"\\"",""),8)
and it worked!!!
Sorry to bother everyone.
For those reading over Lisa’s shoulder at a later date, the expression ‘\\"
’ in the formula from Airtable support is called an escaped double-quote
; that is, it is a two-character expression that allows you to specify a literal double quotation mark character inside a text phrase enclosed within double quotation marks. (The backslash — ‘\
’ — is an escape code that tells Airtable to treat the next character in the text as the literal representation of that character, even if it would otherwise have a special meaning within Airtable code. For instance, you couldn’t enclose a double quote within double quotes without the escape character — that is, as ‘"""
’ — because the second double quote would close the expression opened by the first double quote, while the third double quote would open another, unclosed expression and trigger an error.)
Another, possibly less-confusing way to state that formula would be to use single quotes to enclose text expressions, as so:
SUBSTITUTE({FIELDNAME},'"','')
That also works in Airtable and — to me, at least — is more immediately obvious as to what are the target and substitution characters…