I'm trying to project the amount of non-bill hours we plan to spend on a project between the non-bill approval date and the contract end date. I'm getting an invalid operation error when using this formula:
=IF([Column2]1 <= [Contract End Date]@row , [Approved Hours per week]@row , "")
Here's my column setup:
I've calculated the difference between created date and contract end date in the # of weeks until contract end" column. Then I did a vlookup for the "total approved hours" (from our governance approval sheet) and divided the total hours by the # of weeks" column value to get "Approved hours/week" column values.
In column 2-column 16, I am trying to populate the value in "Approved hours per week" if the date in row 1 of that column is less than the contract end date. I'm guessing I need some kind of date indicator w/in the IF statement? Any help would be greatly appreciated.