The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
How can I calculate column "C" from "A" & "B" columns? Thank you.
a | b | c |
0 | 7 | 7 |
3 | 10 | 17 |
6 | 2 | 19 |
9 | 4 | 23 |
12 | 9 | 32 |
15 | 18 | 50 |
Solved! Go to Solution.
Well, you cannot unless you have an Index column or the value of A for each row of increases in a sorted fashion. If the latter is indeed the case then you could do this:
c =
SUMX(FILTER('Table',[a] <= EARLIER([a])),[b])
Well, you cannot unless you have an Index column or the value of A for each row of increases in a sorted fashion. If the latter is indeed the case then you could do this:
c =
SUMX(FILTER('Table',[a] <= EARLIER([a])),[b])
Thank you, @Greg_Deckler . Your formulate works for me.
If you know any page which explains "EARLIER" function, please let me know.
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |