Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a line chart that shows cumulative number of leads received vs target leads. Nothing fancy.
I wish to add a third line to show the Previous Year cumulative leads received.
The cumulative measure is calculated as follows:
CumLeadsActual = CALCULATE(SUM('Leads'[Leads Actual]),FILTER(ALLSELECTED('Leads'),'Leads'[Month]<=MAX('Leads'[Month])&&'Leads'[IsCurrentMonth]="Past Month"))
Solved! Go to Solution.
Hi @vicsinc ,
You can try below formula to create measures:
LYCumLeads =
VAR CurrentMonth = MAX('Leads'[Month])
RETURN
CALCULATE(
[CumLeadsActual],
FILTER(
ALLSELECTED('Leads'),
'Leads'[Month] <= EOMONTH(CurrentMonth, -12)
)
)CumLeadsActual =
CALCULATE(
SUM('Leads'[Leads Actual]),
FILTER(
ALLSELECTED('Leads'),
'Leads'[Month] <= MAX('Leads'[Month]) && 'Leads'[IsCurrentMonth] = "Past Month"
)
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @vicsinc ,
You can try below formula to create measures:
LYCumLeads =
VAR CurrentMonth = MAX('Leads'[Month])
RETURN
CALCULATE(
[CumLeadsActual],
FILTER(
ALLSELECTED('Leads'),
'Leads'[Month] <= EOMONTH(CurrentMonth, -12)
)
)CumLeadsActual =
CALCULATE(
SUM('Leads'[Leads Actual]),
FILTER(
ALLSELECTED('Leads'),
'Leads'[Month] <= MAX('Leads'[Month]) && 'Leads'[IsCurrentMonth] = "Past Month"
)
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 35 | |
| 31 | |
| 20 | |
| 13 | |
| 11 |