Forum Discussion
Help needed for DAX rolling calculation
What formula are you using to count the number of meetings in the past 60 days? Are you counting the date, or a unique meeting identifier. Ideally, you want to count the Index. If you don't have one, you can always try Sum(Last60Days). Then you would be adding a 1 for every meeting occurrance.
For meetings in the future, I would stay with what you did for Meetings past, and do something like...
FutureMeetingFlag=If([Date]>Today(), 1,0)
Then you can use Sum([FutureMeetingFlag])
Let us know if this resolves the issue,
Nate
- Rsanjuan10 years agoAdvocate III
thanks for the reply. I don't have a separate formula to count the number of meetings in the past 60 days.
In the field "status" there are two types; Completed Meetings and Planned Meetings.
I just set the rows for the account person and the columns to the "status" field. I used the 60day calculation as a visual filter.
I will try your suggestions. Thanks!
- Rsanjuan10 years agoAdvocate III
I tried the future formula, it seems to work, but it's a bit off. The actual data has 4, but it's only showing 3. And it is totaling wrong :(
- Nhallquist10 years agoHelper V
Please post your formulas. This will help me understand what is going on better.
Thanks,
Nate