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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
JulieL4108
Regular Visitor

Looking for correct SQL for Previous Month of Column to create a new column

PREVIOUSMONTH('Query1[Date_field]) not working [Date_field] references a column in the table, but no returns of prior month of the date?

1 ACCEPTED SOLUTION

Hi @JulieL4108 

If you want to add a calculated column by dax,You can use edate() function. 

e.g 

Column =
EDATE ( 'Query1'[Date_field], -1 )

Output

vxinruzhumsft_1-1704421662538.png

If you want to implement it in power query, you can add a custom column and input the following code

Date.AddMonths([Date_field],-1)

Output

vxinruzhumsft_0-1704421609639.png

Best Regards!

Yolo Zhu

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

View solution in original post

4 REPLIES 4
JulieL4108
Regular Visitor

Apologies I am new and may not have asked the question properly.  I have a date column and want to create a new date column 1 month prior than the original date column.  

Hi @JulieL4108 

If you want to add a calculated column by dax,You can use edate() function. 

e.g 

Column =
EDATE ( 'Query1'[Date_field], -1 )

Output

vxinruzhumsft_1-1704421662538.png

If you want to implement it in power query, you can add a custom column and input the following code

Date.AddMonths([Date_field],-1)

Output

vxinruzhumsft_0-1704421609639.png

Best Regards!

Yolo Zhu

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

Thank you!  I kept adding in 'm' in the front of the field EDATE('m','Query1'[date_field],-1) thinking I needed to indicate month and kept receiving an error.

EDATE (<column> , -1 )

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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