I basically need to list all 51 departments in our store.
Right now only the departments with sales greater then $0.00 are being list in report.
I need the report to list all 51 departments including departments that have $0.00 in sales. Items that are not linked to a Departments need totals to be unassigned.
I have tried at in Formula editor @Department
IF ISNULL({Department.Name}) THEN
"<Unassigned>*"
ELSE
{Department.Name}
Also, tried
IF IsNull ({Department.Name}) OR Length({Department.Name}) = 0 THEN
"Unassigned"
ELSE
{Department.Name}
Not sure what I to this formula to achieve the result.
Right now only the departments with sales greater then $0.00 are being list in report.
I need the report to list all 51 departments including departments that have $0.00 in sales. Items that are not linked to a Departments need totals to be unassigned.
I have tried at in Formula editor @Department
IF ISNULL({Department.Name}) THEN
"<Unassigned>*"
ELSE
{Department.Name}
Also, tried
IF IsNull ({Department.Name}) OR Length({Department.Name}) = 0 THEN
"Unassigned"
ELSE
{Department.Name}
Not sure what I to this formula to achieve the result.