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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Pass containsstring function to a calculated column

I have a column that contains lines of text with separators, what i am trying to achieve is to list down how many times a text appears in this columns. I know this could be done by containsstring function, but the problem is i want the search criteria to be dynamic. I mean i will input the search through a slicer and then the calculated column should search in the target column as provide output as TRUE or FALSE. I have tried using the SELECTEDVALUE function aswell but its not working below is the forula i am using

Example: "Sold to Partner ID" is what I am searching in Warnings Description column

Column = CONTAINSSTRING('Data War'[Warnings Description],"Sold to Partner ID")
 
This is what i tried, as I have a slicer that contains "Sold to Partner ID"
 
Column = CONTAINSSTRING('Data War'[Warnings Description],SELECTEDVALUE(Category[Warning Category]))
 
 
 
 
2 REPLIES 2
v-gizhi-msft
Community Support
Community Support

Hi,

 

I think you can not dynamically show the expected result by selecting slicer by creating calculated columns.

Please try to create a measure like this:

Measure =
CONTAINSSTRING ( MAX ( 'Table'[ID] ), SELECTEDVALUE ( 'SlicerTable'[ID] ) )

Hope this helps.

 

Best Regards,

Giotto

parry2k
Super User
Super User

@Anonymous any reason why you are adding this a column, try measure.

Column = CONTAINSSTRING(MAX('Data War'[Warnings Description]),SELECTEDVALUE(Category[Warning Category]))


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors