Forum Discussion
aishak12
Helper IV
3 years agoFilter date by last 30 days
All, I have this date format and I would like to only see the past 30 days for Labor billed in my report. Does anyone know how I can create a measure for past 30 days?
MahyarTF
Memorable Member
3 years agoHi,
You could use below measure :
Last30DaysValue = CALCULATE(sum(Sheet120[Fee]), FILTER(sheet120, Sheet120[Date] > TODAY()-30))
Appreciate your Kudos and please mark it as a solution if it helps you
- aishak123 years ago
Helper IV
I tried this and no data is appearing in my visual. This is the Date field. I want the SUM of labor billed in the past 30 days
- MahyarTF3 years ago
Memorable Member
Did you try to create the measure on Date field ?
And would you please share the result of the new measure you created ?