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
Anonymous
Not applicable

Exclude customer from total billing

Good

Could two customers somehow be excluded from total billing?

My dax measure for calculating total billing is: https://gyazo.com/170750e5e8236d14d59d95b4108b1c82

Both clients have their key, which are: 1 and 3 respectively: https://gyazo.com/60cdcb7aa45052a1e55a199b665618be

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hello @Alejandro-Glez ,

Try to create another measure based on your"Total Billing" measurelike this:

Measure =
CALCULATE (
    [Total Facturacion],
    FILTER ( FactVentas, NOT ( FactVentas[ClientKey] IN { 1, 3 } ) )
)

Best regards

Icey

If this post helps, then consider Accepting it as the solution to help other members find it faster.

View solution in original post

4 REPLIES 4
vanessafvg
Super User
Super User

you could do 

measure =
VAR measure = measure1 + measure2
RETURN
    CALCULATE ( measure, FILTER ( table, NOT ( customerkey IN { "one""two" } ) ) )





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




amitchandak
Super User
Super User

@Anonymous , You can have measure like

example

filter meausre = calculate([Total Facturation], filter(Table, not(Table[customer] in {"Customer1","Customer2"})))

 

OR only remove in grand total


if(isfiltered(Table[customer]) ,[Total Facturation],[filter meausre])

Anonymous
Not applicable

I didn't quite understand your answer.

I'll let you capture the clients and the tables. The goal is that customers with Key "1" and "3" are not counted for full billing.

https://gyazo.com/79c43b8933cf769cfeb8e2aef8ed228f

https://gyazo.com/4fec3053e532392f5b84763a68ee9121

https://gyazo.com/892de8128d60ef2a64474743d0141234

Icey
Community Support
Community Support

Hello @Alejandro-Glez ,

Try to create another measure based on your"Total Billing" measurelike this:

Measure =
CALCULATE (
    [Total Facturacion],
    FILTER ( FactVentas, NOT ( FactVentas[ClientKey] IN { 1, 3 } ) )
)

Best regards

Icey

If this post helps, then consider Accepting it as the solution to help other members find it faster.

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.