Forum Discussion
RichardT_78
6 years agoHelper I
Returning the latest data row
Hi All I cant find how to display duplicate data - have have seen some simple right click remove duplicate copies but i dont have these option available to me as im using a live dataset connecti...
- 6 years ago
Hi RichardT_78
this Measure should work with the updated scenario.
Measure 10 = VAR __maxDate = CALCULATE( MAX( Table[Date] ), ALLEXCEPT( Table, Table[Robot] ) ) RETURN CALCULATE( COUNTROWS( Table ), TREATAS( { __maxDate }, Table[Date] ) )Later you can use it in a filter pane as filters on this visual, like below.
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
LinkedIn
Mariusz
6 years agoCommunity Champion
Hi RichardT_78
this Measure should work with the updated scenario.
Measure 10 =
VAR __maxDate =
CALCULATE(
MAX( Table[Date] ),
ALLEXCEPT( Table, Table[Robot] )
)
RETURN
CALCULATE(
COUNTROWS( Table ),
TREATAS( { __maxDate }, Table[Date] )
)
Later you can use it in a filter pane as filters on this visual, like below.
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
LinkedIn
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
RichardT_78
6 years agoHelper I
Worked Perfectly Mariusz
Thank you for your help