Forum Discussion

nmehra2205's avatar
nmehra2205
New Member
6 years ago
Solved

Last Coulmn Value

hi all, i am new to power bi and looking for some help. I have a table where i have entered data based on every date. I want to show data only for my last row. Lets Say i just want to show value o...
  • v-alq-msft's avatar
    6 years ago

    Hi, nmehra2205 

     

    Based on your description, I created data to reproduce your scenario.

     

    You may create a measure as follows.

     

    LastestSteps = 
    LOOKUPVALUE(
        'Table'[Steps],
        'Table'[Date],
        CALCULATE(
            MAX('Table'[Date]),
            ALLSELECTED('Table')
        )
    )

     

     

    Result:

     

    Then I add a new row.

    Here is the result.

     

    Best Regards

    Allan

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.