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
ohb60
Frequent Visitor

Previous month name in a empty table

Hi PBI expert,

 

I'm a beginner and I'm using Json file with relative date (month -1) and I'd like to find the name of the previous month from today's date...

 

So this is how I find the actual month...and it display "mars" (maybe not the best method...)
But what I want is to display "february" ...how can I do that ? 

= let
Source = Table.FromRows({{Date.MonthName(DateTime.LocalNow())}},{"Month"})
in
Source
1 ACCEPTED SOLUTION
ohb60
Frequent Visitor

Finally I found something that works : 

 

PrevMon = FORMAT(EDATE(NOW();-1);"MMMM")

Smiley Happy

 

Thanks everyone !

View solution in original post

7 REPLIES 7
Greg_Deckler
Super User
Super User

Try this:

 

Measure 2 = 
VAR __currentMonth = MONTH(EOMONTH(TODAY(),0))
VAR __previousMonth = IF(__currentMonth = 1,12,__currentMonth - 1)
VAR __previousYear = IF(__currentMonth = 1,YEAR(TODAY()) - 1,YEAR(TODAY()))
RETURN
FORMAT(DATE(__previousYear,__previousMonth,1),"mmm")

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...


@Greg_Deckler wrote:

Try this:

 

Measure 2 = 
VAR __currentMonth = MONTH(EOMONTH(TODAY(),0))
VAR __previousMonth = IF(__currentMonth = 1,12,__currentMonth - 1)
VAR __previousYear = IF(__currentMonth = 1,YEAR(TODAY()) - 1,YEAR(TODAY()))
RETURN
FORMAT(DATE(__previousYear,__previousMonth,1),"mmm")


Thank you Greg but it's not working for me...I have this error when I try to validate this new measure :

 

La syntaxe pour '.0' est incorrecte. (DAX(VAR __currentMonth = MONTH(EOMONTH(TODAY().0))VAR __previousMonth = IF(__currentMonth = 1.12,__currentMonth - 1)VAR __previousYear = IF(__currentMonth = 1.YEAR(TODAY()) - 1.YEAR(TODAY()))RETURNFORMAT(DATE(__previousYear,__previousMonth.1),"mmm"))).

Greg_Deckler
Super User
Super User

Does this have to be done in M or can you do it in DAX?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Both method interest me but maybe I should say : the most simple one 🙂

@ohb60  Please try this to get the previous month name 

Power Query Editor (M-Code)

= Table.AddColumn(#"Added Custom", "PrevMonth", each Date.MonthName(Date.AddMonths([hiredate],-1)))

DAX

PrevMon = FORMAT(EDATE(emp[hiredate],-1),"MMMM")

 





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

Proud to be a PBI Community Champion





@PattemManohar wrote:

@ohb60  Please try this to get the previous month name 

Power Query Editor (M-Code)

= Table.AddColumn(#"Added Custom", "PrevMonth", each Date.MonthName(Date.AddMonths([hiredate],-1)))

DAX

PrevMon = FORMAT(EDATE(emp[hiredate],-1),"MMMM")

 


Thank you for this but I can't make it work either : 

 

I wrote this in my new measure : 

PrevMon = FORMAT(EDATE(MAJ[Update];-1);"MMMM")

I got this error message : 

It is not possible to determine a single value for the 'Update' column of the 'Update' table. This can occur when a measurement formula refers to a column that contains many values, without specifying an aggregation such as min, max, count, or sum to obtain a single result.

 

Here's the code I have in my 'Update' column  : 

let
    Source = Table.FromRows({{DateTime.LocalNow()}},{"Update"})
in
    Source

 

ohb60
Frequent Visitor

Finally I found something that works : 

 

PrevMon = FORMAT(EDATE(NOW();-1);"MMMM")

Smiley Happy

 

Thanks everyone !

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.