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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Ailis
New Member

Clustered column & 2 lines with same series (TY & LY)

Hi,

 

I am new to Power BI and trying to create a report. I have an excel chart based on the same data (solid line = TY, dotted line = LY):

 

Excel goal 1.PNG

I am trying to replicate this in PowerBI. Currently my chart in PowerBI looks like this:

 

PowerBIPowerBI

I cant work out how to include a TY and LY line, rather than a line which is just the total of both. I am not sure if I need to pivot my data/create a measure/something else?

 

Currently to only show the line for a specific company I am filtering in the chart filters, but I may also eventually want to add multiple lines with other company TY data too, as below:

 

Excel goal 2.PNG

 

Many thanks!

 

1 ACCEPTED SOLUTION
v-haibl-msft
Microsoft Employee
Microsoft Employee

@Ailis

 

Yes, you need to create a measure. You can take a look at this article. I’ll also give a simple sample as below.

BTW, I’ve uploaded my .pbix file of following sample to here for reference.

Clustered column & 2 lines with same series (TY & LY)_1.jpg

For above dataset, we can create a measure with following DAX formula to get the last year sales.

The calendar table is related with above table using Date key.

LY_Sales = 
CALCULATE ( SUM ( Table1[Sales] ), SAMEPERIODLASTYEAR ( 'Calendar'[Date] ) )

Then in the line and clustered column chart, we can drag both LY_Sales and TY_Sales into Line values.

Clustered column & 2 lines with same series (TY & LY)_2.jpg

Best Regards,

Herbert

View solution in original post

1 REPLY 1
v-haibl-msft
Microsoft Employee
Microsoft Employee

@Ailis

 

Yes, you need to create a measure. You can take a look at this article. I’ll also give a simple sample as below.

BTW, I’ve uploaded my .pbix file of following sample to here for reference.

Clustered column & 2 lines with same series (TY & LY)_1.jpg

For above dataset, we can create a measure with following DAX formula to get the last year sales.

The calendar table is related with above table using Date key.

LY_Sales = 
CALCULATE ( SUM ( Table1[Sales] ), SAMEPERIODLASTYEAR ( 'Calendar'[Date] ) )

Then in the line and clustered column chart, we can drag both LY_Sales and TY_Sales into Line values.

Clustered column & 2 lines with same series (TY & LY)_2.jpg

Best Regards,

Herbert

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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