Skip to main content

I’d like a formula to remove the [1][2] instances from the column data

IF({First Nations}, REGEX_EXTRACT({First Nations}, "[^\\[]*"))

The regular expression effectively says: grab everything up to—but not including—the first square brace.


IF({First Nations}, REGEX_EXTRACT({First Nations}, "[^\\[]*"))

The regular expression effectively says: grab everything up to—but not including—the first square brace.


Perfect, works great thank you!