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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
DavidNunes7
Helper I
Helper I

Subtract the previous row with another column

Hello everyone, I need help with with calculate columm on dax!!

 

forum bi.png

C3= A3-B2 

C4 = A4-B3... C5=A5 -B4

Please me to find this column. Thanks  🙂 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I assume the order of each column -> always increase.

If this is the case, please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1675130932983.png

 

 

Needed CC =
IF (
    NOT ISBLANK ( OFFSET ( -1, ALL ( Data[End] ), ORDERBY ( Data[End], ASC ) ) ),
    Data[Start] - OFFSET ( -1, ALL ( Data[End] ), ORDERBY ( Data[End], ASC ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

I assume the order of each column -> always increase.

If this is the case, please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1675130932983.png

 

 

Needed CC =
IF (
    NOT ISBLANK ( OFFSET ( -1, ALL ( Data[End] ), ORDERBY ( Data[End], ASC ) ) ),
    Data[Start] - OFFSET ( -1, ALL ( Data[End] ), ORDERBY ( Data[End], ASC ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Its help me a lot
Thank You

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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