Forum Discussion
kattlees
Post Patron
8 years agoCumulative 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
Community Champion
8 years agoWhat are your formulas for PayDatesDone and TotalPayDates?
- kattlees8 years ago
Post 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