Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Trying to create a DAX syntax

I am new in power bi so not exactly sure how to perform this syntax in DAX.

 

I am able to complete the formula in excel which looks like this.

 

IF(A2=A1,0,A2)  So basically I want to know how to get the cell to return the value unless the value above it is the same. 

 

Can someone please help me with how to perform this in DAX syntax? Thank you!

 

WordsCalculation
95649564
546546
1564815648
156480
156480
942942
13541354
13540
13540
948948
9480
10001000
10000
  • You can't really work with "cells" in Power BI, you have to work with tables and columns. So, you will need to add an index to your table. Then you can filter down to the correct row above your current row, so something along the lines of:

     

    Column = 
    VAR __lastIndex = [Index]-1
    VAR __currentValue = [Words]
    VAR __lastValue = MAXX(FILTER(ALL(Table),[Index]=__lastIndex),[Words])
    RETURN
    IF(_currentValue = __lastValue, 0, __currentValue)

4 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    You can't really work with "cells" in Power BI, you have to work with tables and columns. So, you will need to add an index to your table. Then you can filter down to the correct row above your current row, so something along the lines of:

     

    Column = 
    VAR __lastIndex = [Index]-1
    VAR __currentValue = [Words]
    VAR __lastValue = MAXX(FILTER(ALL(Table),[Index]=__lastIndex),[Words])
    RETURN
    IF(_currentValue = __lastValue, 0, __currentValue)
    • Anonymous's avatar
      Anonymous
      Not applicable

      Greg_Deckler 

       

      Thank you for your response. I was wondering if you could walk me through how to create an index in my table. Here is a snapshot of my data I am working with. 

       

      • Greg_Deckler's avatar
        Greg_Deckler
        Community Champion

        In Power Query, select your query. Choose Add Column from the menu and then Index Column.