Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good Day,
Please help me on what set analysis/functions to be use on below sample data
I need to add new column 'Total' on the right side and 'Grand total' at the bottom. (highlighted on red font)
Total = total count of accounts per ROLLRATES and per BUCKET .
Please refer to sample output and raw data for your reference
Hope to hear you the soonest.
Thank you
dimension = BUCKET
MEASURE
=COUNT({ROLLRATES={'RB'}}BUCKET)
=COUNT({ROLLRATES={'RF'}}BUCKET)
=COUNT({ROLLRATES={'ST'}}BUCKET)
total
=column(1)+column(2)+column(3)
sum of rows will give you the grand total anyways.
ahh.. My bad. missed <>
=COUNT({<ROLLRATES={'RB'}>}BUCKET)
=COUNT({<ROLLRATES={'RF'}>}BUCKET)
=COUNT({<ROLLRATES={'ST'}>}BUCKET)
dimension = BUCKET
MEASURE
=COUNT({ROLLRATES={'RB'}}BUCKET)
=COUNT({ROLLRATES={'RF'}}BUCKET)
=COUNT({ROLLRATES={'ST'}}BUCKET)
total
=column(1)+column(2)+column(3)
sum of rows will give you the grand total anyways.
Have you tried to use the "Partial Sum" using Pivot Table?
Hi Pradosh_Thakur,
As per trying below function under measure 'error in expression' was encountered.
MEASURE
=COUNT({ROLLRATES={'RB'}}BUCKET)
=COUNT({ROLLRATES={'RF'}}BUCKET)
=COUNT({ROLLRATES={'ST'}}BUCKET)
ahh.. My bad. missed <>
=COUNT({<ROLLRATES={'RB'}>}BUCKET)
=COUNT({<ROLLRATES={'RF'}>}BUCKET)
=COUNT({<ROLLRATES={'ST'}>}BUCKET)
It works! 🙂 and I named it as RB, RF and ST and use as per below function
What do you mean by this? Is this still under MEASURE?
total
=column(1)+column(2)+column(3)
I tried below but 'error in expression' error was encountered
=column('RB')+column('RF')+column('ST')
Thank you so much it works! 🙂
How about total at the bottom? Is it possible?