Forum Discussion
Anonymous
3 years agoNot applicable
Filter data with date column
Hello everyone, I'm new with Power BI and I need to filter data with a date colum so Iwant to get only the data that is before 60 days(2 months) comparing to the ddate column value. here an ex...
amitchandak
3 years agoSuper User
Anonymous , You can create a measure and use that in visual or visual level filter
calculate(Sum(Table[Value]), filter(Table, Table[Date] <= today() -60 ) )