Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How reduce data slicer register based on a calculated measure

Hi everyone, 

Gustavo98_0-1660498150319.png

I want to delete "upc" registers from my data slicer when "Elasticidad material" measure is (blank) like the case in the image.

 

Thanks have a good day.

 

@amitchandak 

1 ACCEPTED SOLUTION
speedramps
Super User
Super User

Create a measrure

 

Has data = INT(NOT(ISEMPTY(Yourttablename)))

 

Then click on you slicer and on the filters menu add 

Has data = 1

 

How it works

ISEMPTY(Yourttablename)  returns true if there is no data for the slicer context

 

NOT converts the true to false

 

INT converts true to 1

 

Therefore 
if Has data = 1 then it has data, 
if Has data = 0 then it does not have data

 

Use Has data =1  in the slicer filter to hide items that do not have data

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remeber we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

 

View solution in original post

3 REPLIES 3
speedramps
Super User
Super User

Create a measrure

 

Has data = INT(NOT(ISEMPTY(Yourttablename)))

 

Then click on you slicer and on the filters menu add 

Has data = 1

 

How it works

ISEMPTY(Yourttablename)  returns true if there is no data for the slicer context

 

NOT converts the true to false

 

INT converts true to 1

 

Therefore 
if Has data = 1 then it has data, 
if Has data = 0 then it does not have data

 

Use Has data =1  in the slicer filter to hide items that do not have data

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remeber we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

 

Anonymous
Not applicable

Finally i find a way, and your answer helped me.

 

Gustavo98_0-1660505609103.png

I use directly is not blank in the filter pane 😄

 

Anonymous
Not applicable

Ty vry much for your answer.

 

Gustavo98_0-1660504533134.png

Although i followed your steps i keep having the problem. 

 

I will try using other functions like isnumeric.

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors