Forum Discussion
eengle11
3 years agoNew Member
Running Total On Graph
Sorry for the basic picture, I am trying to display a running total graphically, the darker blue represents Actual amounts, and the light Blue represents Projections. They should always follow ...
vsorensen
3 years agoFrequent Visitor
Try using an if statement
IF(SELECTEDVALUE([date_column]) > [date_to_stop_graph], CALCULATE())
Replace the 'CALCULATE()' statement with your running total calculation.