Forum Discussion
kattlees
8 years agoPost Patron
Cumulative sum with VALUES filter issue?
I have a deduction table.... I'm trying to get a projected total of the deduction value for the year up to 5000. Once it hits 5000 it should stop. So I have the following: A column: DedValue=if...
Greg_Deckler
8 years agoCommunity Champion
What are your formulas for PayDatesDone and TotalPayDates?
- kattlees8 years agoPost Patron
In Pay Dates Table
PayDatesDone=sum(PayDates[CountPayDates])
CountPayDates=if(PayDates[PayDate]<today(),1,0)
PayDatesLeft is a value we enter manually
TotalPayDates = PayDatesDone+PayDatesLeft