Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

formula help need 1

Status
Not open for further replies.

pgtek

Programmer
Sep 28, 2001
1,180
CA
Hi
i have a field in my table definied as varchar DOB
like this 020203
i have some data that the field was not completed fill
like this 0202 missing the last 2 varchar

How can i create a formula that would check if the field is not completely fill blank all the other field and display a complet blank for this entry field?

Cheer

pg

 
Create a formula :

If len({field}) <> 6 then &quot;&quot; else {field}

replace italics with correct field name.

Hope this helps.

Reebo
Scotland (Sunny with a Smile)
 
Hi
Thanks Reebo it works
man my mind went blank :)

thanks
pg
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top