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 want to create a measure and use it as a slicer.
Here is my table.
My measure should be in the name of "NotListed". It should be give the values which Available_Status = Available and Active_Status ="Blank" and Not Active_Status="Blank".
Thanks !
Solved! Go to Solution.
Hey @Anonymous ,
you cannot use a measure as a slicer, but you can use a calclated column as a slicer.
Add a calculated column:
NotListed = If(myTable[Available_Status]="Available" && myTable[Active_Status]="" && myTable[Not Active_Status] <> "" , "NotListed", "Listed")
If your string is really blank and not just an empty string use the BLANK() function to check against.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up.
Best regards
Denis
Blog: WhatTheFact.bi
Hey @Anonymous ,
you cannot use a measure as a slicer, but you can use a calclated column as a slicer.
Add a calculated column:
NotListed = If(myTable[Available_Status]="Available" && myTable[Active_Status]="" && myTable[Not Active_Status] <> "" , "NotListed", "Listed")
If your string is really blank and not just an empty string use the BLANK() function to check against.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up.
Best regards
Denis
Blog: WhatTheFact.bi
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 | |
| 73 | |
| 50 | |
| 48 | |
| 45 |