Informix 10 on an Informix Database. I have a vendor table with ten columns that are used to denote a special classification for the vendor. Each vendor record will have a "Y" in one of these columns with the rest being null. This is in lieu of having one column with ten potential values, but don't go there. I need to run a report where these ten columns are grouped into five distinct categories. My statement looks like this:
if {vn_sadbus_765.large}="Y" then "LARGE" else
if {vn_sadbus_765.small}="Y" then "SMALL" else
if {vn_sadbus_765.wmn}="Y" then "WOMAN OWNED" else
if {vn_sadbus_765.sdvo}="Y" then "SMALL DISADVANTAGED" else "OTHER"
When I run the report, I only get LARGE to show and everything else is falling into a null group. I assume the nulls in the columns are screwing me up and I'm only getting LARGE to print because it is first column being tested. What is the simplest way to deal with this?
Thanks.
RW
if {vn_sadbus_765.large}="Y" then "LARGE" else
if {vn_sadbus_765.small}="Y" then "SMALL" else
if {vn_sadbus_765.wmn}="Y" then "WOMAN OWNED" else
if {vn_sadbus_765.sdvo}="Y" then "SMALL DISADVANTAGED" else "OTHER"
When I run the report, I only get LARGE to show and everything else is falling into a null group. I assume the nulls in the columns are screwing me up and I'm only getting LARGE to print because it is first column being tested. What is the simplest way to deal with this?
Thanks.
RW