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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
GA1993
Helper II
Helper II

Difference of values for the last 3 months

Please how do I translate this into a DAX formula??

 

GA1993_1-1631152172305.png

 

 

=IF((G4-F4-E4)<=0,1,0)*IF((G5-F5-E5)<=0,1,0)*IF((G6-F6-E6)<=0,1,0)

 

 

My goal is to subtract the current month and the previous 2 months then apply the corresponding multiplication as indicated.

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@GA1993 , for this we need to what is raw data and what is column on row.

 

productX can help. But if have months as column , then we can have

 

productX(Table, [Aug-21] -[Jul-21]-[Jun-21])

 

If not then we create a measure and we need a context to run that like

 

productX(values(Table[ID]) , CALCULATE(SUM(Table[Value]),DATESMTD('Date'[Date]))

                    -CALCULATE(SUM(Table[Value]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))

                   -CALCULATE(SUM(Table[Value]),DATESMTD(dateadd('Date'[Date],-2,MONTH))) )

 

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@GA1993 , for this we need to what is raw data and what is column on row.

 

productX can help. But if have months as column , then we can have

 

productX(Table, [Aug-21] -[Jul-21]-[Jun-21])

 

If not then we create a measure and we need a context to run that like

 

productX(values(Table[ID]) , CALCULATE(SUM(Table[Value]),DATESMTD('Date'[Date]))

                    -CALCULATE(SUM(Table[Value]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))

                   -CALCULATE(SUM(Table[Value]),DATESMTD(dateadd('Date'[Date],-2,MONTH))) )

 

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Is there a way to do it by subtracting the current and previous month?

 

I am trying to reuse your code but I keep getting this error below... 

GA1993_0-1631227595259.png

 

The formula on excel is =IF((AW9-AW8)<=0,1,0)

 

and my data should be..

GA1993_1-1631227390637.png

 

Please your help would be really appreciated!!

 

I was able to make it work!! Thank you so much!!

This is how it's supposed to look like..

 

GA1993_1-1631198335935.png

 

 

 

=IF((AQ9-AQ8-AQ7)<=0,1,0)*IF((AR9-AR8-AR7)<=0,1,0)*IF((AS9-AS8-AS7)<=0,1,0)

 

AQ = Unauthorized Access Infraction

AR = Loss of AirPro Assets Infraction

AS = Breach in Security Protocol Infraction

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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