Hi Experts,
Need your help here. I'm trying to create a report studio report in which I can group certain account numbers together. So for example I have account number 1,2,3,4,5,6,7, I wanna group 1,2,3,4 together and get the sum of them, then 5,6,7 together and get the sum.
Is it possible in report studio? How can I do this?
I tried using both the following two queries, but it returned me no data...
1)
case when
([GL Control Files].[Chart of Accounts].[Account Number])
in ('73100','73120','73130','73140','73150','73515','73525') then ('sals')
else
case when
([GL Control Files].[Chart of Accounts].[Account Number])
in ('70110','70130','70140','70160','70400') then ('payrolls') end
end
2)
If
([GL Control Files].[Chart of Accounts].[Account Number]
in ('73100','73120','73130','73140','73150','73515','73525')) then ('sals')
else
if ([GL Control Files].[Chart of Accounts].[Account Number]
in ('70110','70130','70140','70160','70400')) then ('payrolls')
else null
Is Account number a string or a numeric value?