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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
spartan27244
Resolver I
Resolver I

Can't seem to apply SAMEPERIODLASTYEAR correctly

The following calculation gives me a value called PMPM on my report correctly, and displays the correct amounts.

PMPM = Sum(Paid) / Sum(MM)

 

to get the previous years I was attempting

PMPM-PY = Calculate(Sum(Paid) / Sum(MM), SAMEPPERIODLASTYEAR(Dates[Date]))

Where Dates is my Marked Date table, however this does not yield any results. The PMPM calculation is cleary confined to the time period on the report, currently (10/1/2019 - 9/20/2020) so I am uncertain of why the previous year would not be able to infer this.

 

2 REPLIES 2
Fowmy
Super User
Super User

@spartan27244 

Did not quite got it, anyhow , can you try this modified version:

PMPM-PY = 
DIVIDE(
    Sum(Table[Paid]),
    Calculate(
        Sum(Table[Paid]),SAMEPERIODLASTYEAR(Dates[Date])
    )
)

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

To try and break this down a bit to a more simpler calculation to get the flow...

A simple sum of a Base Table Amount "MedPlanPaid" is shown on the left of the grid, next to it is a measure that calculates the exact same value as Sum(MedPlanPaid), The problem in this context is how to reference  the previous year. So in the grid the PY calculation (far right) should show the same value as the previous row (i.e. previous year). If I can do that, then I can expound on the calculation to get where I want to go. Here is a snapshot of the visual 

 

spartan27244_1-1621631823100.png

 

And a snippet of the model showing the replation show between report periods, the date table and the claims data

 

spartan27244_2-1621631917122.png

 

 

 

 

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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