HenryJSPost Prodigy5 years agoAdd Cumulative Hi all, How can I add a column that states IF 'custom' is in the future then add a 15 cumulative total for each row? 30 May 2021 15 06 June 2021 30 etc Show More
FowmySuper User5 years agoHenryJS You can add the following DAX calculated column: Cumm = IF( Table[Custom] > TODAY() , RANKX( FILTER(Table,Table[Custom] > TODAY() ) , Table[Custom], , ASC) * 15 )
Related contentCumulative TotalCreating Cumulative GraphsYear to date cumulativeCumulative Totalcumulative sum