Hi, I was wondering if it's possible to create a slicer that filters rows if certain column is blank? I think I could make a calculated column by using the "Create column from example" feature, but is there other ways to achieve this?
For example I have this type of data:
Could I create a slicer with two checkboxes "Show completed tasks" and "Show pending tasks", and it would filter the table based on the "Completed on" column? Also both should be allowed to be selected at the same time so that the table shows all tasks.
I actually just tried the "Column from examples" feature to create a "Is complete" column, but it failed to find any transforms.
Solved! Go to Solution.
@JKoivu , best would a calculated column and a slicer on that.
Other option is create a table with thise two values (Enter data) and use the selected value for calculation
measure like
if(selectedvalue(Task[Task value]= "Show completed tasks", calculate(countrows(Table) filter(Table, not(isblank(Table[compeltedOn])))), calculate(countrows(Table) filter(Table, isblank(Table[compeltedOn]))))
In case you want go with column
slicer column = if( isblank(Table[compeltedOn]) , "Show completed tasks", "Show pending tasks")
Proud to be a Super User!
@JKoivu , best would a calculated column and a slicer on that.
Other option is create a table with thise two values (Enter data) and use the selected value for calculation
measure like
if(selectedvalue(Task[Task value]= "Show completed tasks", calculate(countrows(Table) filter(Table, not(isblank(Table[compeltedOn])))), calculate(countrows(Table) filter(Table, isblank(Table[compeltedOn]))))
In case you want go with column
slicer column = if( isblank(Table[compeltedOn]) , "Show completed tasks", "Show pending tasks")
Proud to be a Super User!
Proud to be a Super User!
@JKoivu - Yes, in DAX you could create this column:
Slicer Column =
IF(ISBLANK([Completed on]),"Pending","Completed")
Proud to be a Super User!
Join us for an in-depth look at the new Power BI features and capabilities at the free Microsoft Business Applications Launch Event.
User | Count |
---|---|
420 | |
148 | |
113 | |
50 | |
49 |
User | Count |
---|---|
458 | |
138 | |
131 | |
83 | |
71 |