Hello Smartsheet Community!
I have a project I am working on for work, and I am struggling with a formula to calculate the expected date of completion for our production orders based on a few criteria. A few things are missing that are confidential, but I have attached a picture of a practice spreadsheet:
Please note: a lot of this is me playing around trying to make it work, so it's a little messy. The two entries highlighted in yellow are in the column I am trying to make work. What I need to do is determine when our order SHOULD finish up, based on the 'Expected Days Until Completion' column which is currently set to this:
=(([Work Order QTY]@row - [Current FG Units]@row) / [Planned QTY/Hour]@row) / [Hours Per Day]@row
The dates are off right now, but, the way I need it to work is I need to make a formula that calculates the expected date of completion, excluding weekends, by using the expected days until completion (or some other column(s) which would work more intuitively) to let me know what the estimated completion date is, which will go in the highlighted column.
I currently have this formula in that column, but it doesn't exclude weekends:
=TODAY() + [Expected Days Until Completion]@row
I have also tried using a second formula that kicks out 'incorrect argument set' which is probably due to the fact that the 'end_date' is not actually a date:
=TODAY() + NETWORKDAY(TODAY(), NETWORKDAYS([Expected Days Until Completion]@row))
If someone could help me work this out, I would really appreciate it! I have already figured out how to pull this data into a secondary sheet with Index/Match and Index/Collect, but I am struggling with this and it should be simple. I think I am making it harder than it needs to be. Thank you in advance for your time!!!