Hi Smartsheet Community,
Probably something easy I'm missing but it's escaping me. I am looking to have the total number of work orders broken out into number of work orders to be completed per month during the contract start and end dates. Currently the formula is returning a negative number or a number in a month column outside of the contract dates. If I have 100 work orders and my contract is three months, I only want to see a work order break down for those three months, and totaling 100 work orders.
Simplification of the formula would be appreciated too if possible.
Here is an example of the formula for February that returns a result of -933 . For each month the "FEBEND#" is swapped for the correct month date reference. So MAREND, APREND, etc.
=IFERROR(IFERROR(IF(IF(AND([2022 Start Date]@row > JANSTART#, [2022 Start Date]@row < FEBEND#, [2022 End Date]@row <= FEBEND#), NETWORKDAY([2022 Start Date]@row, FEBEND#) * [Phases Daily Run Rate (Constant)]@row, 0) > [Systems to Be Completed Per Phase]@row, [Systems to Be Completed Per Phase]@row, NETWORKDAY([2022 Start Date]@row, FEBEND#) * [Phases Daily Run Rate (Constant)]@row), "") - [Jan Goal]@row, 0)