Hey,
I am trying to sum all values in column "Delta" (please see below) that come before the first empty row. Is there a way using DAX to do this? In other words, for the below data, I need a measure that calculates 2.1 + 3.5 + 7.7 + 1.2 = 14.5.
ID | Delta |
1 | 2.1 |
2 | 3.5 |
3 | 7.7 |
4 | 1.2 |
5 | |
6 | 5.8 |
7 | 1.0 |
8 | |
9 | 4.5 |
10 | 6.8 |
11 | |
12 | 2.1 |
13 | |
14 |
|
Thank you!
Solved! Go to Solution.
Hi @eliele ,
You can create a measure as below:
Measure 3 = VAR _minID = CALCULATE ( MIN ( Sheet6[ID] ), Sheet6[Delta] = BLANK () ) RETURN CALCULATE ( SUM ( Sheet6[Delta] ), Sheet6[ID] < _minID )
Best regards,
Yuliana Gu
Hi @eliele ,
You can create a measure as below:
Measure 3 = VAR _minID = CALCULATE ( MIN ( Sheet6[ID] ), Sheet6[Delta] = BLANK () ) RETURN CALCULATE ( SUM ( Sheet6[Delta] ), Sheet6[ID] < _minID )
Best regards,
Yuliana Gu
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
209 | |
51 | |
43 | |
41 | |
39 |
User | Count |
---|---|
270 | |
210 | |
73 | |
70 | |
65 |