Hi there,
I am trying to build a formula that predicts work completed [%] and can anticipate estimated revenue for said period of time [week] based on a construction schedule. I used the following formula below to get a monthly forecast:
=IF(TODAY() < Start@row, 0, [Total SOV]@row / (MONTH(Finish@row) - MONTH(Start@row) + 1 + IF(YEAR(Finish@row) = 2022, 12, 0) + IF(YEAR(Finish@row) = 2024, 24, 0)) * (MONTH(TODAY()) - MONTH(Start@row) + 1 + IF(YEAR(TODAY()) = 2022, 12, 0) + IF(YEAR(TODAY()) = 2024, 24, 0))) * (1 - $[% Complete]@row)
How can I rebuild this or switch it to a weekly forecast? I need to be able to predict the % of work completed based on the schedule to then calculate the associated cost for that week in the future.