I am receiving this error everytime I try running this query
Error in list of function arguments: '=' not recognized.
Unable to parse query text.
What I am trying to do is compare the value in one field and change the value based on the condition. List below is my SQL
SELECT Div, IIf([Div] = 'LT', 'Hello', 'Jack') AS test
FROM tblAI
Can someone help me
Error in list of function arguments: '=' not recognized.
Unable to parse query text.
What I am trying to do is compare the value in one field and change the value based on the condition. List below is my SQL
SELECT Div, IIf([Div] = 'LT', 'Hello', 'Jack') AS test
FROM tblAI
Can someone help me