Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
11 | |
10 | |
9 | |
9 |
User | Count |
---|---|
18 | |
14 | |
13 | |
13 | |
12 |