Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Data
This is my Data.
I make this matrix in power bi.
If i select any option from slicer like 'LIMIT' it gives me this(below) result
Some Ref. No. are disappear beacause there is no define "LIMIT or NO LIMIT".
But I want blank row also like this ⬇️
Please suggest me how bring the solution.
Hi @MHTANK ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create a table and a measure.
Table 2 = {"LIMIT","NO LIMIT",BLANK()}Total = CALCULATE (
SUM ( 'Table'[Rate] ),
FILTER (
'Table',
[LIMIT] IN SELECTCOLUMNS ( 'Table 2', "Limit", 'Table 2'[Limit] )
)
)
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
you need to write measure like this
SUMofRate = SUM('Sheet1'[Rate])&""
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 30 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 58 | |
| 38 | |
| 22 | |
| 22 |