Forum Discussion
Exclude customer from total billing
- 5 years ago
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.
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])
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
- Icey5 years ago
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.