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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DouglasRoubaud
Frequent Visitor

Create Column - Previous Year (Dax or Power Query)

I have a base with 3 years of history and I would like to create a column with the same period of the previous year... Aiming to hit line by line (of the same date), without having to place the date column in the visual (the same table).

 

DouglasRoubaud_0-1638444400766.png

 

In short, it is taking the date without losing this mapping between the same dates and dates.

Can you help me with the best procedure to do creating this column? 

 

Thanks!

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

Hi  @DouglasRoubaud ,

Tty to use the following dax to create a new column:

previousvalue = 
CALCULATE (
    MAX ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        YEAR ( 'Table'[Date] )
            = YEAR ( EARLIER ( 'Table'[Date] ) ) - 1
            && MONTH ( 'Table'[Date] ) = MONTH ( EARLIER ( 'Table'[Date] ) )
            && DAY ( 'Table'[Date] ) = DAY ( EARLIER ( 'Table'[Date] ) )
    )
)

Get:

vluwangmsft_0-1638845172301.png

Final create visual:

vluwangmsft_1-1638845185232.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

View solution in original post

2 REPLIES 2
v-luwang-msft
Community Support
Community Support

Hi  @DouglasRoubaud ,

Tty to use the following dax to create a new column:

previousvalue = 
CALCULATE (
    MAX ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        YEAR ( 'Table'[Date] )
            = YEAR ( EARLIER ( 'Table'[Date] ) ) - 1
            && MONTH ( 'Table'[Date] ) = MONTH ( EARLIER ( 'Table'[Date] ) )
            && DAY ( 'Table'[Date] ) = DAY ( EARLIER ( 'Table'[Date] ) )
    )
)

Get:

vluwangmsft_0-1638845172301.png

Final create visual:

vluwangmsft_1-1638845185232.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

negi007
Community Champion
Community Champion

@DouglasRoubaud  you can create a measure to calc previous year value like below

 

Value_LY = CALCULATE(SUM('Table'[value]),DATEADD('Table'[date],-1,DAY))
 
and then create your visual like below
 
negi007_0-1638445859075.png

 




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.