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

If Statement with a Calculation

I am trying to create a Fiscal calendar that is particular to our company. 

 

I have the transaction year and the transation month, what I am looking to do is to create a new calculated column that would add 1 to a the year if the associated month is > 8.  

 

essentially, this is what I would like:

IF [year] > 8 then ([year]+1), [year]

 

Thank you.

1 ACCEPTED SOLUTION

Please follow below steps 

 

1. In power query create a new column 

Transaction Date +1 = Date.AddYears([Transaction date],1)

2. In visual write below dax

New Transaction date = if(MONTH('Table'[Transaction date])>8,'Table'[Transaction Date +1],'Table'[Transaction date])

 

Please confirm if it works..!!

 

 

View solution in original post

4 REPLIES 4

Please follow below steps 

 

1. In power query create a new column 

Transaction Date +1 = Date.AddYears([Transaction date],1)

2. In visual write below dax

New Transaction date = if(MONTH('Table'[Transaction date])>8,'Table'[Transaction Date +1],'Table'[Transaction date])

 

Please confirm if it works..!!

 

 

Thank you - I would need the new year in a column on its own. 

I do get the idea behind this - so thank  you for that. 🙂

Step 2 woudl be to create a new column based i guess. 

 

Hi,

Another way using DAX without creating a new column in Power query

 

Create a column with below dax

New Transaction date = if(MONTH('Table'[Transaction date])>8,IFERROR(DATE(YEAR('Table'[Transaction date])+1, MONTH('Table'[Transaction date]), DAY('Table'[Transaction date])), BLANK()),'Table'[Transaction date])
 
Hope this helps 🙂
 

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.

Top Solution Authors
Top Kudoed Authors