Nov 2, 2006 #1 devagupt Vendor Joined Oct 27, 2006 Messages 40 Location US IIf([Inspect only]=-1 ,[Actual],0) This generated one result. How do i make it generate the exact opposite result?
IIf([Inspect only]=-1 ,[Actual],0) This generated one result. How do i make it generate the exact opposite result?
Nov 2, 2006 #2 Remou Technical User Joined Sep 30, 2002 Messages 13,030 Location BE Exact opposite? As in if Inspect is false? IIf([Inspect only]=0 ,[Actual],0) Or as in zero, if Inspect is true? IIf([Inspect only]=-1,0 ,[Actual]) You will find information on IIf in Access VBA Help. Upvote 0 Downvote
Exact opposite? As in if Inspect is false? IIf([Inspect only]=0 ,[Actual],0) Or as in zero, if Inspect is true? IIf([Inspect only]=-1,0 ,[Actual]) You will find information on IIf in Access VBA Help.