Hi
Do you know a formula that will let me filter out the rows that contain numbers. I tried to data cleanse, but it is not working.
I also tried to data cleanse and remove the # first and then filter, but not sure of the formula to use to only return the rows without numbers.
@Carlyn
use this
REGEX_Match([YourFieldName], ".*\d+.*")
mark done if solved.