I have this select query :
I would like to do two thing but not sure if they are possable or how to do them
1) using this query I would like to omitt the value "N/A" (w/o quotes)
2 ) omitt "N/A"(w/o quotes) and omite a persons name in a value in column [Referred to] where colume[status] does not equal "lead" (w/o quotes)
The reason, I have 3 tables with basicly the same info in them (all three are lookup tables)
thanks for help.
Code:
SELECT DISTINCT ReferredToLU.ReferredTo FROM ReferredToLU ORDER BY ReferredToLU.ReferredTo;
1) using this query I would like to omitt the value "N/A" (w/o quotes)
2 ) omitt "N/A"(w/o quotes) and omite a persons name in a value in column [Referred to] where colume[status] does not equal "lead" (w/o quotes)
The reason, I have 3 tables with basicly the same info in them (all three are lookup tables)
thanks for help.
Comment