Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I have a pivot table visual something like this in my Power BI report :
Issue Id | Issue Desc | Reported Date | Assigned Date | Work Started Date | Work completed date | |||
1 | Netwok fail | 01/01/2017 |
| null | null | |||
2 | CPU |
|
|
| null | |||
3 | Intranet |
|
|
| 06/01/2017 | |||
4 | Hardware |
| null | null | null |
I want a slicer so that user can filter out table containing null values in different date columns. (*only one slicer)
Can anyone give idea how to achieve that ?
Thanks in advance
Solved! Go to Solution.
Hi,
If so you can use this formula,
Blank New = IF(ISBLANK(SlicerHelp[Assigned Date]),"Assign Date Blank",IF(ISBLANK(SlicerHelp[Work Started]),"Start Date Blank",IF(ISBLANK([Work Com Date]),"Comp Date Blank","Non Blank")))
Hi,
You can create a new column using IF and ISBLANK function and the use it as a slicer. (if the behavior is the same as above data set you can use below function)
Remember you have to create a column if you want to use it as a slicer.
Blank = IF(ISBLANK(SlicerHelp[Work Com Date]),"Blank Raws","Non Blank")
Thanks for your suggestion.In this way, I have to add different slicer for each column, but I am looking for a way to include all the columns in same slicer for filtering.
Hi,
If so you can use this formula,
Blank New = IF(ISBLANK(SlicerHelp[Assigned Date]),"Assign Date Blank",IF(ISBLANK(SlicerHelp[Work Started]),"Start Date Blank",IF(ISBLANK([Work Com Date]),"Comp Date Blank","Non Blank")))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
8 | |
7 | |
2 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |