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

Not Like Function

Status
Not open for further replies.

Hillary

Programmer
Feb 15, 2002
377
US
Is there a function for not like that can be put into a formula? I have a field that has null, zero and positive integer values. I am trying to conditional format the positive interger values. The data is String type. In my formula I tried the ToNumber funtion so I could use >greater than but I get "The string is non-numeric" error even though there is nothing but numeric and null values. I would like to conditional format anything that is not like "" or "0".

Thanks for you help!
 
Hi !

Maybe you can try it this way:

if IsNull({table.field}) or ({table.field}) = "0" then
"whatever"
else
"your format"

/Goran
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top