Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am attachine a qvw. In this i want a column to the right of Client that shows TOTAL of count of Accepted values per client. I tried to do it but error is there.
Thanks
You need aggregate function around your Count function in the calculated dimension. May be this:
=Aggr(Count({<State = {'Client-Accept', 'Dealer-Accept', 'Accepted'} , ClientId = {'1', '4', '3'} >}State), Client)
if this is what you want?
You need aggregate function around your Count function in the calculated dimension. May be this:
=Aggr(Count({<State = {'Client-Accept', 'Dealer-Accept', 'Accepted'} , ClientId = {'1', '4', '3'} >}State), Client)
if this is what you want?
Here it is