Forum Discussion
nmehra2205
6 years agoNew Member
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...
- 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.
v-alq-msft
Community Support
6 years agoHi, 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.