Hi Jim, > What kind of regular expression can I use to detect if a string is > entirely whitespace (space, tab, or return)? I tried "^([\s|\t|\n]*)" > but that didn't work. Try this: answer matchtext( your_field_reference, "^[\s\t\n]+$" ) --gordy