Forum Discussion

azlocal21's avatar
azlocal21
Frequent Visitor
4 years ago
Solved

Date Filtering Issues

Hello everyone! Super new, and mostly self taught in Power Bi Destkop. I have gotten a lot of help building measures from this forum but I have not been able to find the help I need for this issue...
  • amitchandak's avatar
    4 years ago

    azlocal21 , Try a measure like

     


    var _max = VAR _MostRecentFilter = MAXX( Filter( allselected('Table1') , 'Table1'[Start_Date]<=Today()) ,'Table1'[Start_Date])
    Return
    calculate(count('Table1'[Start_Date]), filter('Table1', 'Table1'[Start_Date] =__max))