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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
Anonymous
Not applicable

Measure to display the same period last year

Hi,

 

I need to calculate the total number of jobs from last year against this year, but only up to today. This runs from a Financial year Nov - Oct, so i need to display the figures for FY 2019 Nov - (TODAY) instead of the full year.

 

I have managed the follwing - however, whilst it shows the correct values (highlighted), it shows other values too which arent needed. As I won't actually be using this in a table i need to make sure it only shows the values for the same period. Any ideas what i cam doing wrong?

 
SamePeriodLastYear = CALCULATE(DISTINCTCOUNT(FactShipment[ShipmentID]),SAMEPERIODLASTYEAR(DateDim[MasterDate]))
 
Capture2.PNG
 
Not sure if it helps but this is my Date Table, the Masterdate is filtered by the Fiscal Year.
 
Capture.PNG
 
1 REPLY 1
ibarrau
Super User
Super User

Hi, you can try creating a condition that set as BLANK() the result if the date is after today. Like this:

Medida = 
IF (
    MAX(Table[DateColumn]) < NOW(),
    CALCULATE (
        DISTINCTCOUNT(FactShipment[ShipmentID]),
        SAMEPERIODLASTYEAR(DateDim[MasterDate])
    ),
    Blank()
)

That will work for the table for sure. If the requirement is another visualization, let us know what you need to build.

 

Regards, 


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.