I have a calculated column below to calculate a rolling 12 months. I have 6 slicers including an 'All Proc'[Year] and 'All Proc'[Month] slicer. How do I write the code below to disregard all of the slicers? I've tried (All, 'All Proc') at the end of the calculation, but that doesn't seem to do the trick. Thank you.
Rolling 12 Month Rate:=calculate([Count of TYPE]/[Count of Surg]*100,filter('All Proc' ,'All Proc'[ProcedureDate]>=[RollingYearBegin]&&'All Proc'[ProcedureDate]<=[RollingYearEnd]))
Rolling 12 Month Rate:=calculate([Count of TYPE]/[Count of Surg]*100,filter('All Proc' ,'All Proc'[ProcedureDate]>=[RollingYearBegin]&&'All Proc'[ProcedureDate]<=[RollingYearEnd]))