Re: dynamic IIf

2000-08-21 Thread Jamie Keane
The syntax should be IIF(condition,result1,result2) where result1 occurs if condition is true and result2 occurs if condition is false. -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291

RE: dynamic IIf

2000-08-21 Thread Peter Benoit
nday, August 21, 2000 11:53 AM * To: [EMAIL PROTECTED] * Subject: Re: dynamic IIf * * * The syntax should be IIF(condition,result1,result2) * where result1 occurs if condition is true and result2 occurs * if condition is * false. * * -- * Jamie Keane * Programmer * SolutionMasters, Inc.

Re: dynamic IIf

2000-08-21 Thread Cary Gordon
Without seeing an example of your code, my best guess is that you are likely doing something which requires the use of DE() (the delayed evaluation function) it the actions. The Iif() function raises some timing issues which are ameliorated by DE(). Cary At 11:43 AM 8/21/2000 -0400, you

Re: dynamic IIf

2000-08-21 Thread Jamie Keane
- From: Peter Benoit [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Date: Monday, August 21, 2000 12:03 PM Subject: RE: dynamic IIf Well that's what I have IIF(url.stuff IS "whatever" then "something" else "something else") which is what my line of