dpelizzari
IS-IT--Management
I have never tried this before, but I was asked to create a calculated field based on information in a query. basically, if a field is blank, then select another field, if that field is blank, select a third. Here is what I wrote:
I think I am missing something in the format, probably an open/close paranthesis
Any help (as always) is greatly appreciated.
Code:
IIf (LEN( [Remedy Budget])>9 , [Remedy Budget], IIf (LEN ([Lease Budget])>9, [Lease Budget], [VPN Budget]), [VPN Budget])
I think I am missing something in the format, probably an open/close paranthesis
Any help (as always) is greatly appreciated.