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

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

Reply
DRossi
Helper III
Helper III

Query against dataset

Hello.

 

I have a PowerApp that I'm using to trigger a flow that query's a dataset on PBI Workspace.

 

I'll be replacing "hamlet" with a string value from a text box in the PowerApp.

 

DRossi_0-1674040872910.png

 

The DAX I have so far is the below, but it's not filtering the way I would have thought. In this case it returns nothing:

 

 

EVALUATE(FILTER(LocalHeroes_WarrantySearchTable, LocalHeroes_WarrantySearchTable[Address1] IN {"hamlet"}))

 

 

The table would look something like this...

 

IDCustNameAddress1City
2John2 Roche DriveAyr
3Peter33 Ester CresDublin
4Alfie4 HamletGlasgow
5Mark18 BomontLondon
6Emma74 CessnockManchester

 

What I want the DAX to do is, search the [Address1] column for any values that contain "hamlet", and then return that row or rows of data.

so:

 

4Alfie4 HamletGlasgow
1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@DRossi,

 

Try this:

 

FILTER(LocalHeroes_WarrantySearchTable, CONTAINSSTRING(LocalHeroes_WarrantySearchTable[Address1], "hamlet"))




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
DRossi
Helper III
Helper III

@DataInsights awesome, thanks

DataInsights
Super User
Super User

@DRossi,

 

Try this:

 

FILTER(LocalHeroes_WarrantySearchTable, CONTAINSSTRING(LocalHeroes_WarrantySearchTable[Address1], "hamlet"))




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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