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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
voiciK
Frequent Visitor

Calculated measure with filter

Hi all,

 

I have a sample table like this:

 

TEST 
AccountAmount
5000 $    10.00
RES001 $    15.00
5001 $    23.00
LABOUR $    76.00
7051 $  168.00
5746 $  641.00

 

(Assuming the rows go on and on to >1000 rows with multiple values)

The account IDs are not in number format because some accounts have letters like the example above.

 

I want to create a new measure to summarise all the amounts for accounts starting with 5 (ie: 5000, 5001, etc)

 

Currently my measure looks like this:

 

Measure = CALCULATE(SUM(TEST[Amount]),TEST[Account]="5000"&&TEST[Account]="5001"&&TEST[Account]="5002" ... (and so on)

 

I wonder if there is a way to filter there 5xxx accounts in my formula? I tried TEST[Account]="5???" but it does not work.

 

Thank you

1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

Hi @voiciK , 

Try this:

Measure = CALCULATE(SUM(TEST[Amount]),FILTER(TEST , LEFT('TEST'[ACCOUNT],1) = "5"))  

 


Connect on LinkedIn

View solution in original post

2 REPLIES 2
tex628
Community Champion
Community Champion

Hi @voiciK , 

Try this:

Measure = CALCULATE(SUM(TEST[Amount]),FILTER(TEST , LEFT('TEST'[ACCOUNT],1) = "5"))  

 


Connect on LinkedIn
voiciK
Frequent Visitor

Brilliant! 

 

Thank you 😄

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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