You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I have a pointer stored in TempVars!MyIndex Within DLookup( or DSum( references to TempVars!MyIndex work fine but IIf(tblField = TempVars!MyIndex, does not work. As a work-around I tried this:
Dim NewIndex as Integer NewIndex = TempVars!MyIndex IIf(tblField = NewIndex, and found it works well.
So just what is the difference between temporary variables and numeric table fields? ---- Ken