Hello everyone,
I have the following formula to check if the fields contains a valid date (dd/mm/yyyy).
if
!isnull(DateTimeParse([_CurrentField_],'%d/%m/%Y')) then 'Valid'
else 'Not Valid' endif
But, I want this formula to only check for those rows which do not contains "-" in the fields. How can I do this? Can someone help??