See if this gives you any ideas....
With
A1: Data Type
B1: Totals
C1:AZ1 contains Day_01, Day_02....Day_50
A2: Expected
A3: Actual
And
B2: (The sales target....eg 100,000)
B3: =SUM(C3:AZ3)
Then
If the day contains an Actual sales amount, that amount is displayed.
Otherwise, this formula subtracts the total actual sales-to-date from
the tota expected sales and calculates the future average expected daily
sales required to meet the target.
C3: =IF(ISNUMBER(C3),C3,($B$2-$B$3)/(50-COUNT($C$3:$AZ$3)))
Copy C3 across through AZ3.
Initially, all cells in C3:AZ3 contain 1,000
After C4: 3000
C3: displays 3000....D3:AZ3 now display: 1,980
Is that something you can work with?
Bookmarks