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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
yippiekyoo
Frequent Visitor

Filter measure "starts with"

Hi All,

 

working currently on a project where I need to filter certain values from a database in order to categorize them. 

 

I need to have a measure that says filter all part numbers starting with the letter A. 

 

Thats my current function:

Filter function =
SUMX(
FILTER(
'AO Domestic',
'AO Domestic'[Part Number] = "STARTS WITH A"
)
,
'AO Domestic'[Total Actual Cost incl. Retro. Pay])

 

Would be great if someone could tell me how to correct the measure. Thanks a lot in advance.

 

Kind regards

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,

 

you can write your measure like so

Measure 3 = 
CALCULATE(
	SUM('FactWithDates'[Amount])
	,FILTER(
		'FactWithDates'
		,LEFT('FactWithDates'[Item],1) ="A"
	)
) 

Hopefully this gets you started

 

Regards

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

5 REPLIES 5
Heinrich
Post Partisan
Post Partisan

Hello @TomMartens 
This solution is great.

Can this measure be used to filter and leave only the alphabetical rows.

Means filter out everything that start with A to Z
Regards

Heinrich

Hey @Heinrich ,

 

you can adapt the measure like so:

Measure 3 = 
CALCULATE(
	SUM('FactWithDates'[Amount])
	,FILTER(
		'FactWithDates'
		,LEFT('FactWithDates'[Item],1) in { "A", "B", "C" }
	)
) 

The curly braces define a table. Of course you can define a table in your semantic model that contains the rows A-Z, then the filter statement will look like this:

...
,LEFT('FactWithDates'[Item],1) in VALUES( 'tablename'[columnname] )
...

Hopefully this will help to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hi @TomMartens 

Thank you very much.

Have a great weekend.

Regards

Heinrich

TomMartens
Super User
Super User

Hey,

 

you can write your measure like so

Measure 3 = 
CALCULATE(
	SUM('FactWithDates'[Amount])
	,FILTER(
		'FactWithDates'
		,LEFT('FactWithDates'[Item],1) ="A"
	)
) 

Hopefully this gets you started

 

Regards

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hi thank you very much  - that works. 

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.