Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have this table
i need show like this table
i
Hello Vijay,
Please use below solution.
1) Take a table chart
2) Add first dimension as below.
=if(domain='a' and amount>10,domain)
Label it as Domain and uncheck include null values.
3) Add second dimension.
=amount
I hope this helps.
This can be your amount measure:
sum({<amount = {">10"}, domain= {'a'} >} amount)
Create New dimension like
=if(Amount>10,domain) as NewDimension use this in table and uncheck include null values.
i getting this
i need like this
You're right, what i said was incorrect if you don't have any other dimension to break these values out into rows.
Can use dimensions:
=aggr(only({<domain= {'a'} >} domain), domain)
=aggr(only({<Amount= {">10"} >} Amount), Amount)
Just display the amount as a dimension, rather than a measure
Hello Vijay,
Please use below solution.
1) Take a table chart
2) Add first dimension as below.
=if(domain='a' and amount>10,domain)
Label it as Domain and uncheck include null values.
3) Add second dimension.
=amount
I hope this helps.
thank you