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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
userpien
Helper IV
Helper IV

Measure to select only specific values from a column

Hi,
i want to create a measure, that i want to use as filter, to filter values for specific values of a column.

I want something like this

userpien_0-1725530815605.png


How can i reach this? Thank you

1 ACCEPTED SOLUTION
v-yaningy-msft
Community Support
Community Support

Hi, @userpien 

Thanks for Gayatri_D05 reply. On my test, it works fine normally. You can try the following measure.

vyaningymsft_0-1725613156444.png

FilterCamp all = IF(
    OR(
        SELECTEDVALUE(M_Agg[CodZef]) = "2024",
        SELECTEDVALUE(M_Agg[CodZef]) = "FFR"
    ),
    1,
    0
)

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

4 REPLIES 4
v-yaningy-msft
Community Support
Community Support

Hi, @userpien 

Thanks for Gayatri_D05 reply. On my test, it works fine normally. You can try the following measure.

vyaningymsft_0-1725613156444.png

FilterCamp all = IF(
    OR(
        SELECTEDVALUE(M_Agg[CodZef]) = "2024",
        SELECTEDVALUE(M_Agg[CodZef]) = "FFR"
    ),
    1,
    0
)

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

userpien
Helper IV
Helper IV

I want to filter values "2024" and "FFR", so i write a measure and the put this on filter panel

I wrote thise measure

FilterCamp = IF(FILTER(VALUES(M_Agg[CodZef]),M_Agg[CodZef]="2024"),1,0)

and it works

but if i write
FilterCamp = IF(FILTER(VALUES(M_Agg[CodZef]),M_Agg[CodZef]="FFR"),1,0)


it returns me this error
"

Cannot Convert value of type text to type true false"

why? i want to filter these two values, not only 2024

thanks

userpien
Helper IV
Helper IV

slicer dowsn't work, i want to use measure as filter, on filter area

Gayatri_D05
Resolver II
Resolver II

Hi @userpien , On what condition are you planning to select the values from the column ?

I think you can just use the slicer and whatever you select in the slicer would show you in the table with the values

If your requirement is solved, please make THIS ANSWER as SOLUTION and help other users find the solution quickly. Please hit the LIKE button if this comment helps you. 😊

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors