mgerard802
Technical User
I have the following formula:
if (sum ({@BV-Current}, {tblClients.ClientName})= 0) then "New"
else if sum ({@BV-Prior}, {tblClients.ClientName})= 0 then "Lost"
else if sum ({@BV-Current}, {tblClients.ClientName}) > sum ({@BV-Prior}, {tblClients.ClientName})
then "Increase"
else if sum({@BV-Current}, {tblClients.ClientName}) < sum ({@BV-Prior}, {tblClients.ClientName})
then "Decrease"
else if sum ({@BV-Current}, {tblClients.ClientName}) = sum ({@BV-Prior}, {tblClients.ClientName})
then "Unchanged"
I want to group by the results (New, Lost, etc..) but when I go to grouping this formula is not available, all other formulas are available. Anybody know why it is not available? I am on version 9, Access DB.
if (sum ({@BV-Current}, {tblClients.ClientName})= 0) then "New"
else if sum ({@BV-Prior}, {tblClients.ClientName})= 0 then "Lost"
else if sum ({@BV-Current}, {tblClients.ClientName}) > sum ({@BV-Prior}, {tblClients.ClientName})
then "Increase"
else if sum({@BV-Current}, {tblClients.ClientName}) < sum ({@BV-Prior}, {tblClients.ClientName})
then "Decrease"
else if sum ({@BV-Current}, {tblClients.ClientName}) = sum ({@BV-Prior}, {tblClients.ClientName})
then "Unchanged"
I want to group by the results (New, Lost, etc..) but when I go to grouping this formula is not available, all other formulas are available. Anybody know why it is not available? I am on version 9, Access DB.