Hi,
I need a formula or filter to do this
if OWNER-CITY field is null, only spaces, contains a number, or is only a symbol(s)
I need to pull out to manual tab
PLEASE HELP
thanks
@hi2019 regex solution
Try something like this. Let me know if it helps or you have questions.IF IsNull([owner-city]) ORTrim([owner-city]) = "" ORREGEX_Match([owner-city], ".*\\d.*") ORREGEX_Match([owner-city], "^[^a-zA-Z]*$")THEN [owner-city]ELSE Null()ENDIF