Hi,
I have a query set up that contains a CASE statement which works 95% of the time... That other 5% is due to the data not being there. There is other data that indicates pointers that will help... I just know if this is possible...
So: CASE PRDE.STATUSCODE WHEN 'A' THEN 'Appealed' WHEN 'D' THEN 'Dismissed' WHEN 'P' THEN 'Pending' WHEN 'S' THEN 'Satisfied' WHEN 'T' THEN 'Settled' END AS STATUS
Sometimes the field is '' but a text field called SATISFIEDDATE maybe populated... Can I write something here like: CASE '' THEN [if SATISFIEDDATE <> '' then 'Satisfied']
Sorry if this is stupidly easy... :)