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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
JamesBurke
Helper III
Helper III

Last Month

Hi All ,

 

Date 2 Month = IF('Date'[Mth & Yr] = MONTH(TODAY()) -1, "Last Month", FORMAT('Date'[Mth & Yr], "MM-DD-YYYY"))

 

For Some reason is not showing the Last Month Option

 

Date 2 = IF('Date'[Date] = TODAY() -1 , "Yesterday", FORMAT('Date'[Date], "MMm DD YYYY"))

 

However this works for yesterday and gives me the option 

 

Any Help Would be appericated 🙂

 

Thanks, James.

 

1 ACCEPTED SOLUTION
davidding
Resolver I
Resolver I

assuming the value in 'Date' [Mth & Yr] is always the beginning of the month e.g. "03-01-2024", this formular should work.

Date 2 Month =
IF(
'Date'[Mth & Yr] = DATE(YEAR(TODAY()),MONTH(TODAY())-1,1),
"Last Month",
FORMAT('Date'[Mth & Yr], "MM-DD-YYYY")
)

 

View solution in original post

2 REPLIES 2
davidding
Resolver I
Resolver I

assuming the value in 'Date' [Mth & Yr] is always the beginning of the month e.g. "03-01-2024", this formular should work.

Date 2 Month =
IF(
'Date'[Mth & Yr] = DATE(YEAR(TODAY()),MONTH(TODAY())-1,1),
"Last Month",
FORMAT('Date'[Mth & Yr], "MM-DD-YYYY")
)

 

chiru_kudupudi
Resolver II
Resolver II

Please try the below formula

Date 2 Month = IF(
YEAR(Date[Date]) = YEAR(TODAY()) &&
MONTH(Date[Date]) = MONTH(TODAY()) - 1,
"Last Month",
FORMAT(Date[Date], "MM-DD-YYYY")
)

Regards,
Chiranjeevi Kudupudi

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors
Top Kudoed Authors