Forum Discussion
bilyafamily
6 years agoRegular Visitor
Subtract Current Row from Previous row in another column
Hello Team I am new to dax kindly assist with a formula that will give me the result below. I want column A to alway have the value of the previous row in Column C. Column A Column B Differenc...
- Anonymous6 years ago
You would need to add an index column to your data in Power Query.
Column D = VAR currentindex = Sheet1[Index] RETURN IF ( Sheet1[Column A] = BLANK (), CALCULATE ( MIN ( Sheet1[Column C] ), FILTER ( Sheet1, Sheet1[Index] = currentindex - 1 ) ), Sheet1[Column A] - [Column B] )Paul
JarroVGIT
Resident Rockstar
6 years agoHow does your data currently look like? Where does columnA first row come from? It is not impossible to add a column to a table that is based on the previous row, but we are going to need a little context. Based on your example, one could assume that the third column is calculated but you are asking for the first column (which would be necessary to have your data at all?).
Please elaborate so we can help you out:)
Please elaborate so we can help you out:)
bilyafamily
6 years agoRegular Visitor
See the expected result below