Hello everyone!
I have a matrix visual (shown below) that I have some measures applied to it. There are some empty/null cells that exist though. Is there a way to remove a row with an empty cell in the visual? Thank you!
Here are the measures used:
Before Dialog Steps =
var __BeforeDialogSteps =
SELECTCOLUMNS(
FILTER(
ST03N;
[Date Time] = [Before Date]
);
"__BeforeDIA"; [Number of Dialog Steps]
)
return
__BeforeDialogSteps
After Dialog Steps =
var __AfterDialogSteps =
SELECTCOLUMNS(
FILTER(
ST03N;
[Date Time] = [After Date]
);
"__AfterDIA"; [Number of Dialog Steps]
)
return
__AfterDialogSteps
Percentage Difference Between Checkpoints =
var __Difference = [After Dialog Steps] - [Before Dialog Steps]
return
DIVIDE(__Difference; [Before Dialog Steps])
Solved! Go to Solution.
Hi @Anonymous ,
You can filter out the data with null by Filters panel:
Best Regards
Rena
@Anonymous , with screenshot not clear which row you want to delete
Proud to be a Super User!
Hi @amitchandak
Sorry I thought it was clear from the description. If a cell is empty in any column I would like to delete that row. So wherever you see an empty cell I want that row deleted! I hope that makes more sense.
Hi @Anonymous ,
You can filter out the data with null by Filters panel:
Best Regards
Rena
Hi @yingyinr!
Thank you for your reply! Yes I found it after a bit more research on the filters. I thought it was much more complicated than that so my mind was fixed on creating a measure 😛
Featured Session: Drive Data Culture with Power BI- Vision, Strategy & Roadmap. Register here https://myignite.microsoft.com #MSIgnite #PowerPlatform #Power BI
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
469 | |
185 | |
118 | |
62 | |
52 |
User | Count |
---|---|
442 | |
170 | |
128 | |
77 | |
74 |