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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
RM117
Regular Visitor

searching field and filtering out values that have all or part of the text.

Good afternnon all. I have a table taht has a list of building systems;

Building SystemsDescription
ASUBSTRUCTURE
A10Foundations
A20Slab-on-Grade
BSHELL
B10Superstructure
B20Exterior Enclosures
B30Roofing
CINTERIORS

 

The Data looks something like this;

 

Op CenterElement No.Building #Work Description
8650A10104Repair damage precast foundation
8650A10104Install joint sealant in precast foundation joints
8650A1010EProvide adequate foundation
8650A1010Hot StickProvide adequate foundation
8650A10202Replace Joint Sealant in floor control joints
8650B1010EInstall new concrete slab
8650B20101Clean and repoint brick mortar joint
8650B20101Replace siding between windows

 

What I'm trying to do, is create a slicer with Building Systems as drop downs. So if I select B10 or preferably SHELL, I will get all B10's including B1010, B1020, B1030 and so on.

 

Any help wouold be greatly appreciated 🙂

Thanks!

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

Hi @RM117 ,

I think you can use Groups.

vyilongmsft_0-1714454907242.png

Then you can get what you want.

vyilongmsft_1-1714456380158.pngvyilongmsft_2-1714456410829.png

 

 

 

Best Regards

Yilong Zhou

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yilong-msft
Community Support
Community Support

Hi @RM117 ,

I think you can use Groups.

vyilongmsft_0-1714454907242.png

Then you can get what you want.

vyilongmsft_1-1714456380158.pngvyilongmsft_2-1714456410829.png

 

 

 

Best Regards

Yilong Zhou

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

tamerj1
Super User
Super User

Hi @RM117 

please try

FilterMeasure =
COUNTROWS (
FILTER (
Data,
NOT ISEMPTY (
FILTER (
Systems,
CONTAINSSTRING ( Data[Element No.], Systems[Building Systems] )
)
)
)
)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Kudoed Authors