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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
abc_777
Solution Specialist
Solution Specialist

hi

Hi,

could some one help me to calculate the following using DAX

 

Earned PointReedeem PointPoint Balance
200
300
528
7015
2413

 

thanks

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @abc_777 
Here is a sample file with the solutuion https://www.dropbox.com/t/cvHrJVgWHiu6ZPaf

First you need to add index column (if you have unique date or date/time column it also works just fine)

1.png

Then use the following code to create a new calculated column (let me know if you need measure instead)

2.png

Point Balance = 
VAR CurrentIndex = Data[Index]
VAR TableOnAndBefore = FILTER ( Data, Data[Index] <= CurrentIndex )
VAR EarnedPoints = SUMX ( TableOnAndBefore, Data[Earned Point] )
VAR RedeemedPoints = SUMX ( TableOnAndBefore, Data[Reedeem Point] )
RETURN
    IF ( 
        RedeemedPoints = 0,
        0,
        EarnedPoints - RedeemedPoints
    )

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @abc_777 
Here is a sample file with the solutuion https://www.dropbox.com/t/cvHrJVgWHiu6ZPaf

First you need to add index column (if you have unique date or date/time column it also works just fine)

1.png

Then use the following code to create a new calculated column (let me know if you need measure instead)

2.png

Point Balance = 
VAR CurrentIndex = Data[Index]
VAR TableOnAndBefore = FILTER ( Data, Data[Index] <= CurrentIndex )
VAR EarnedPoints = SUMX ( TableOnAndBefore, Data[Earned Point] )
VAR RedeemedPoints = SUMX ( TableOnAndBefore, Data[Reedeem Point] )
RETURN
    IF ( 
        RedeemedPoints = 0,
        0,
        EarnedPoints - RedeemedPoints
    )
abc_777
Solution Specialist
Solution Specialist

greate thanks

ribisht17
Super User
Super User

@abc_777 

 

Question is not clear

 

Regards,

Ritesh

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.