Hello,
I need to add different columns based on the date that's inside another column.
| Date of data | Person | Jan projected score | Feb projected score | Mar projected score | Jan actual score | Feb actual score | Mar actual score | Jan+Feb+Mar |
| Feb 1 | Fred | 10 | 20 | 30 | 40 | 50 | 60 | ?? |
| Feb 1 | Bob | 1 | 2 | 3 | 4 | 5 | 6 | ?? |
So while we're in December, we add up Jan, Feb, and Mar's projected score. But after January passes, we add up Jan's actual score, and Feb+Mar's projected score.
How do I set something up to automatically handle this?