Forum Discussion
Anonymous
5 years agoNot applicable
Matrix visual filtering
Hi, In below matrix visual, how do I create slicer to get the blank values? let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8srPyFPSUTI2NzNRitWB8y3MTIzB/ODEX...
- 5 years ago
Hi Anonymous ,
Please refer this measure, (Note: you need to create 0/1 table using Enter data function)
Measure 2 = var _select = SELECTEDVALUE('Table (2)'[Column1],1) var _1 = IF( [Measure]=0,BLANK(),1) var _0 = IF( [Measure]=1,BLANK(),0) return IF( _select=1,_1,_0)Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
BTW, pbix as attached.
amitchandak
5 years agoSuper User
Anonymous , You want to get a blank value. So you have to create a measure that will convert blank to 0 and filter it
or try a measure like
if(isblank(coutrows(Table)), 1, blank())
That will give only blank data in visual.
- Anonymous5 years agoNot applicable
Hi amitchandak, thanks for your prompt reply
But I could not get any results from your measure, is it because my original table doesn't have any blank row?