Forum Discussion
Report filter automatic result
Anonymous Create the 2 Measures and then replace [Date] in your Table Visual with Last Date and [Event#] with Last Event#
Last Date =
CALCULATE ( LASTDATE ( 'Table'[DATE] ), ALL ( 'Table' ) )
Last Event# =
CALCULATE (
VALUES ( 'Table'[Event#] ),
LASTDATE ( 'Table'[DATE] ),
ALL ( 'Table' )
)Thanks! This works to create the data for the most recent Event# recorded (thakn you!!). However, the system won't let me use this Measure as a Report Filter. (can't drag it into the report filter box). Any ideas?
- Sean10 years agoCommunity Champion
Last Date formula will work as a column too...
- Anonymous10 years agoNot applicable
Thanks Sean, Sorry for the rooky questions. How do I use these in the Page FIlter setting? When I drag the info in (either columns or measurews), it still requires me to select and event#
Basically, Im trying not to over load the reader with data, so want the page to automatically filter to show only the current event data. (most recent event).
Thanks for your support on this!