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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Rodelaar
Regular Visitor

Exclude data if description starts with Av

Hi, 

I have this measure: 

 

Rentals = CALCULATE(sum(GL_POSTINGS_MAIN[Bedragdc]),GL_POSTINGS_MAIN[ACCOUNT] = "4586")

 

 

But I need to exclude some of the results. The only way to do this at te moment is to exclude these amounts by skipping every line where the description of the transaction starts with "Av". (I'm hoping our General Ledger employee will give me a more structured field in the future).

 

I've been fiddling around, but with no result 🙂 

 

Can you guys help me out a bit? 

 

Thanks!

1 REPLY 1
amitchandak
Super User
Super User

@Rodelaar , Not very Clear, But you need measure like

 


Rentals = CALCULATE(sum(GL_POSTINGS_MAIN[Bedragdc]),filter(GL_POSTINGS_MAIN, GL_POSTINGS_MAIN[ACCOUNT] = "4586"))

 

or

 

 

Rentals = CALCULATE(sum(GL_POSTINGS_MAIN[Bedragdc]),filter(GL_POSTINGS_MAIN, GL_POSTINGS_MAIN[ACCOUNT] = "4586" && left(GL_POSTINGS_MAIN[ACCOUNT],2) <> "Av" ))

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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