Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all
I have a TABLE 1 as below
I build up a Dax formula to calculate the previous round as below, but it not working. Could you pls help to check?
Amt_previous round =
VAR preroundindex = SELECTEDVALUE(Table 1[Round index]) -1
RETURN
CALCULATE(Sum (Table 1[Amt]), Table 1[Round index]=preRoundselected)
Solved! Go to Solution.
Hi,
I guess the column [Round] is sorted by [Round index] column.
Please try the below whether it suits your requirement.
Amt_previous round =
VAR preroundindex =
SELECTEDVALUE ( 'Table 1'[Round index] ) - 1
RETURN
CALCULATE (
SUM ( 'Table 1'[Amt] ),
FILTER ( ALL ( 'Table 1' ), 'Table 1'[Round index] = preRoundselected )
)
Hi,
I guess the column [Round] is sorted by [Round index] column.
Please try the below whether it suits your requirement.
Amt_previous round =
VAR preroundindex =
SELECTEDVALUE ( 'Table 1'[Round index] ) - 1
RETURN
CALCULATE (
SUM ( 'Table 1'[Amt] ),
FILTER ( ALL ( 'Table 1' ), 'Table 1'[Round index] = preRoundselected )
)
Thanks so much for your support
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 45 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 86 | |
| 68 | |
| 38 | |
| 29 | |
| 26 |