Hi
I have a crosstab report which splits purchases across business units for a company.
The business units are based on a numeric account code or are Null if the business unit has not yet been determined.
I have a formula which converts these numbers to more meaningful names for the crosstab column headings but I can't get a heading to appear for the Nulls. The data is there but no column heading.
I've tried both "if business unit = ' ' then.....
AND
"if business isNull then.......
but I still don't get a column heading.
Full formula is as follows....
if {dbo_vw_SoftwareLicense.BusinessUnit} = '3955'
then 'IT'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '3843'
then 'THL'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '3993'
then 'TI'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '6000'
then 'TMF'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '1409'
then 'TT'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = ' ' then 'BU not assigned' <- can't get this heading to appear
Data is from an SQL view
I have a crosstab report which splits purchases across business units for a company.
The business units are based on a numeric account code or are Null if the business unit has not yet been determined.
I have a formula which converts these numbers to more meaningful names for the crosstab column headings but I can't get a heading to appear for the Nulls. The data is there but no column heading.
I've tried both "if business unit = ' ' then.....
AND
"if business isNull then.......
but I still don't get a column heading.
Full formula is as follows....
if {dbo_vw_SoftwareLicense.BusinessUnit} = '3955'
then 'IT'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '3843'
then 'THL'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '3993'
then 'TI'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '6000'
then 'TMF'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = '1409'
then 'TT'
else if {dbo_vw_SoftwareLicense.BusinessUnit} = ' ' then 'BU not assigned' <- can't get this heading to appear
Data is from an SQL view