View Single Post
  #2  
Old May 27th, 2010, 10:56 PM posted to microsoft.public.access.queries
KARL DEWEY
external usenet poster
 
Posts: 10,767
Default IF ISNUMBER FIND in query design expression

Try this --
My_Output: IIF(InStr([YourFieldName],"TRANSF")0,"*", "")

--
Build a little, test a little.


"gator" wrote:

I use the following formula in Excel and it works...I now want to do this in
a query. Can I add it as an expression in the design grid in a seperate
column and how does the syntax change? I will also want to use TRUE/FALSE
for the result.
=IF(ISNUMBER(FIND("TRANSF",H2)),"*", "")