Apr 22, 2004 #1 cavery Technical User Joined Oct 29, 2002 Messages 129 Location US Greetings, How can I use @iserror with @dbcolumn? Thanks for your help! ~Clark
Apr 22, 2004 #2 pmonett Programmer Joined Sep 5, 2002 Messages 2,636 Location FR Assign the result of @dbcolumn to a temp variable, and then use @iserror on the variable. Like this : Code: tmpLookup:=@dbcolumn("":"";"":"";"keywords";1); @if(@iserror(tmpLookup);"Table Empty";tmpLookup) The example supposes that you are writing the code in a Computed field formula. Hope this helps, Pascal. Upvote 0 Downvote
Assign the result of @dbcolumn to a temp variable, and then use @iserror on the variable. Like this : Code: tmpLookup:=@dbcolumn("":"";"":"";"keywords";1); @if(@iserror(tmpLookup);"Table Empty";tmpLookup) The example supposes that you are writing the code in a Computed field formula. Hope this helps, Pascal.
Apr 23, 2004 Thread starter #3 cavery Technical User Joined Oct 29, 2002 Messages 129 Location US Thank you, I'll see how that works! Clark ~Clark Upvote 0 Downvote