Feb 7, 2006 #1 RptSm MIS Dec 28, 2004 19 US I need to create a field that looks at the union code and if its null they put an "N" else "U". Any suggestions would be appreciated.
I need to create a field that looks at the union code and if its null they put an "N" else "U". Any suggestions would be appreciated.
Feb 8, 2006 #2 CharlesCook Programmer May 13, 2002 424 US I think you could do this: DECODE(THE DATA FIELD HERE,NULL,'N','U') Make sure you put the data field in. DO NOT PUT A ' BEFORE AND AFTER NULL . CharlesCook.com ADP - PeopleSoft - SAP ReportSmith - Crystal Reports - SQR - Query - Access Reporting - Interfaces - Data Mining Upvote 0 Downvote
I think you could do this: DECODE(THE DATA FIELD HERE,NULL,'N','U') Make sure you put the data field in. DO NOT PUT A ' BEFORE AND AFTER NULL . CharlesCook.com ADP - PeopleSoft - SAP ReportSmith - Crystal Reports - SQR - Query - Access Reporting - Interfaces - Data Mining