I have an update query and i want to have this:
if something<>NULL
F1= "T"
else
if something1 <> NULL
F1="X"
else
F1="XT"
end if
end if
At the update query i have Field:F1 and Update to:IIf(TABLE1!something Is Not Null;"T";IIf(TABLE1!something1 Is Not Null;"X";"XT"))
but it never gets the XT value...
what am i doing wrong?
Thank you!
if something<>NULL
F1= "T"
else
if something1 <> NULL
F1="X"
else
F1="XT"
end if
end if
At the update query i have Field:F1 and Update to:IIf(TABLE1!something Is Not Null;"T";IIf(TABLE1!something1 Is Not Null;"X";"XT"))
but it never gets the XT value...
what am i doing wrong?
Thank you!