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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple programming question, "does not contain data" 1

Status
Not open for further replies.

Cradders

Technical User
Jul 21, 2005
25
0
0
FR
How do I express the concept

"does not contain data"

or

"does contain data"

within a calculation:

ie, within an If logic test, I want to insert text in a field If another field does contain data.

Sorry I know this is probably really basic programming 101 but I'm not a programmer!

Thanks,
Cradders
 
If(
notIsEmpty(yourField);Result1;Result2
)
 
...or

If(
IsEmpty(yourField);Result1;Result2
)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top