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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
bensiqc
Helper I
Helper I

Create Calculated Column for Relative Month

I'm having trouble building out a calculated column that essentially uses a nested if statement to determine whether a period is within the current complete month (last month), the previous complete month (two months ago), or anything else ("Other").

 

Relative Complete Month = 
if(and(BillingSummary_0000_V70[Accounting Period Month Number] = MONTH(today()-1),BillingSummary_0000_V70[Accounting Period Year] = YEAR(today())),"Current Complete Month",if(and(BillingSummary_0000_V70[Accounting Period Month Number] = MONTH(today()-2),BillingSummary_0000_V70[Accounting Period Year] = YEAR(today())),"Prior Complete Month","Other"))

When I use the above, everything appears under the month of May or "Other". I'd expect data for the "Current Complete Month" to be April and "Prior Complete Month" to be March.

 

FYI, I have an accounting period column in the data which is just a date. Accounting Period Year is a number, Accounting Period Month Number is also a number.

 

I have some limitations with being able to link to any other data sources. I realize a date table would simplify this but I don't think it should be necessary. Just not sure why I can't get this formula working.

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

pls try this

 

Relative Complete Month = 
   VAR _toDay = TODAY()
   VAR _Last1month =  EOMONTH(_toDay,-1)
   VAR _Last2month =  EOMONTH(_toDay,-2)
RETURN
SWITCH( TRUE(),
      EOMONTH (BillingSummary_0000_V70[Accounting Period Date],0) = _Last1month , "Current Complete Month",
   
      EOMONTH (BillingSummary_0000_V70[Accounting Period Date],0) = _Last2month , "Prior Complete Month",

"Other" )

 

View solution in original post

2 REPLIES 2
Ahmedx
Super User
Super User

pls try this

 

Relative Complete Month = 
   VAR _toDay = TODAY()
   VAR _Last1month =  EOMONTH(_toDay,-1)
   VAR _Last2month =  EOMONTH(_toDay,-2)
RETURN
SWITCH( TRUE(),
      EOMONTH (BillingSummary_0000_V70[Accounting Period Date],0) = _Last1month , "Current Complete Month",
   
      EOMONTH (BillingSummary_0000_V70[Accounting Period Date],0) = _Last2month , "Prior Complete Month",

"Other" )

 

Exactly what I needed! Thank you!

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors