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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
Anonymous
Not applicable

Filtering a line chart

Hi Everyone,

 

I’m just starting with Power BI and have a problem with a line chart that I hope someone will be able to help with.

The chart shows Sales Margin by Employee/Month and is filtered by Customer, Employee and Job Date.

 

I have a measure to calculate Margin as follows

 

Margin = IF(ISBLANK( [Profit]/SUM('Job Ledger'[Total Price])),0,[Profit]/SUM('Job Ledger'[Total Price]))

 

It has the IF ISBLANK replace with 0 as I want to show a data point for each month for the employee.

 

This works fine except when I use SELECT ALL in the Employee slicer and I get a line for every employee not just the ones who have been working on a job for the customer. I understand logically why it’s happening but I can’t seem filter the employees out don’t relate to that customer having tried various measures without success.

 

I’d be grateful for any advice on how I can do this.

 

Many thanks

 

Sample File : Example.pbix 

1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

Hi @Anonymous ,

Try this:

Margin = 
IF(
ISBLANK( CALCULATE( [Profit]/SUM('Job Ledger'[Total Price]) , ALLSELECTED('Calendar'[Date])), BLANK(),
IF(
ISBLANK( [Profit]/SUM('Job Ledger'[Total Price])),
0,
[Profit]/SUM('Job Ledger'[Total Price])))


Let me know how it goes! 

Br, 
J


Connect on LinkedIn

View solution in original post

2 REPLIES 2
tex628
Community Champion
Community Champion

Hi @Anonymous ,

Try this:

Margin = 
IF(
ISBLANK( CALCULATE( [Profit]/SUM('Job Ledger'[Total Price]) , ALLSELECTED('Calendar'[Date])), BLANK(),
IF(
ISBLANK( [Profit]/SUM('Job Ledger'[Total Price])),
0,
[Profit]/SUM('Job Ledger'[Total Price])))


Let me know how it goes! 

Br, 
J


Connect on LinkedIn
Anonymous
Not applicable

Hi

 

Thanks so much. Works perfectly and a valuable lesson for me.

 

Best regards

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.