Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I'm looking for a working solution to remove blank values from my visual representation of BOM(Bill of Materials). Currently, I need to represent the data with two visuals: a matrix and a scattered chart. I have searched for a solution around the net, made demo pbix a small set of data, and will attach it at the end of the post. Tried a few things:
Show BOM Remove blank =
SWITCH(
TRUE(),
AND(ISINSCOPE('BOM'[LEVEL_2_ITEMID]),ISBLANK(VALUES('BOM'[LEVEL_2_ITEMID]))),
BLANK(),
AND(ISINSCOPE('BOM'[LEVEL_3_ITEMID]),ISBLANK(VALUES('BOM'[LEVEL_3_ITEMID]))),
BLANK(),
AND(ISINSCOPE('BOM'[LEVEL_4_ITEMID]),ISBLANK(VALUES('BOM'[LEVEL_4_ITEMID]))),
BLANK(),
AND(ISINSCOPE('BOM'[LEVEL_5_ITEMID]),ISBLANK(VALUES('BOM'[LEVEL_5_ITEMID]))),
BLANK(),
AND(ISINSCOPE('BOM'[LEVEL_6_ITEMID]),ISBLANK(VALUES('BOM'[LEVEL_6_ITEMID]))),
BLANK(),
1)1. Mesure
ROWDEPTH = MAX('BOM'[BOM_LEVEL])
2.Mesure
BROWSEDEPTH =
ISINSCOPE('BOM'[LEVEL_1_ITEMID])
+ISINSCOPE('BOM'[LEVEL_2_ITEMID])
+ISINSCOPE('BOM'[LEVEL_3_ITEMID])
+ISINSCOPE('BOM'[LEVEL_4_ITEMID])
+ISINSCOPE('BOM'[LEVEL_5_ITEMID])
+ISINSCOPE('BOM'[LEVEL_6_ITEMID])
3.Mesure
HIDE = IF([BROWSEDEPTH]<=[ROWDEPTH],1)
Both work well if I add them to the value in the matrix visual, but fail if you try to use them as a universal filter so I can remove blanks from any visual more specifically from the Scatter chart.
Attaching my pbix if anyone is willing to do some experimenting and has any idea how to filter blanks from the Scatter Chart visual, by adding a filter of some sort or any other solution that I haven’t thought of yet. BOM_POC.pbix
Thanks for the help in advance Movses
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 47 | |
| 44 |