This is probably a stupid question, but I can't seem to find what I'm doing wrong. Here is my IIF statement:
SELECT...<misc stuff here>,
IIF((Segments.BStreetAddress) = 1, ' ' AS BAddress, Segments.BStreetAddress AS BAddress)
I'm getting a missing operator error.
Is it the space thing? Any ideas?
Thanks in advance...
SELECT...<misc stuff here>,
IIF((Segments.BStreetAddress) = 1, ' ' AS BAddress, Segments.BStreetAddress AS BAddress)
I'm getting a missing operator error.
Is it the space thing? Any ideas?
Thanks in advance...