This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I'm trying to present a chart with 2 lines instead of one but power BI currently shows the line chart as a total for both years, instead of showing separately. The measure I included for the line chart is % ECL =divide(sum('Appended Loan'[ECL]),sum('Appended Loan'[NETBAL_IIS]))
My dataset and filters are as follows:
Anyone knows how to split the line chart?
Thank you.
Solved! Go to Solution.
Hi @Anonymous ,
Just create two measures like so:
% ECL 2018 =
DIVIDE (
CALCULATE (
SUM ( 'Appended Loan'[ECL] ),
YEAR ( 'Appended Loan'[Month] ) = 2018
),
CALCULATE (
SUM ( 'Appended Loan'[NETBAL_IIS] ),
YEAR ( 'Appended Loan'[Month] ) = 2018
)
)% ECL 2019 =
DIVIDE (
CALCULATE (
SUM ( 'Appended Loan'[ECL] ),
YEAR ( 'Appended Loan'[Month] ) = 2019
),
CALCULATE (
SUM ( 'Appended Loan'[NETBAL_IIS] ),
YEAR ( 'Appended Loan'[Month] ) = 2019
)
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Just create two measures like so:
% ECL 2018 =
DIVIDE (
CALCULATE (
SUM ( 'Appended Loan'[ECL] ),
YEAR ( 'Appended Loan'[Month] ) = 2018
),
CALCULATE (
SUM ( 'Appended Loan'[NETBAL_IIS] ),
YEAR ( 'Appended Loan'[Month] ) = 2018
)
)% ECL 2019 =
DIVIDE (
CALCULATE (
SUM ( 'Appended Loan'[ECL] ),
YEAR ( 'Appended Loan'[Month] ) = 2019
),
CALCULATE (
SUM ( 'Appended Loan'[NETBAL_IIS] ),
YEAR ( 'Appended Loan'[Month] ) = 2019
)
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Share the link from where i can download your PBI file.
@Anonymous you can add 2nd measure in line chart,.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 33 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |