Hi there,
I'm trying to write an IF(AND formula that will calculate the correct number of work hours based on start and end dates and % of commitment.
Row 1 = Column month being calculated (07/01/23 = July 23)
Row 2 = Number of workable hours in the month
Currently using the formula below -- it wasn't coming up with any errors at first, but now that it's a column that falls within the start/end date I'm getting an invalid operation error. If I IFERROR it, it doesn't calculate accurately.
=IF(AND([Jun-23]1 >= [Start Date]@row, [Jun-23]1 <= [End Date]@row), [Jun-23]2 * Commitment@row, 0)
TIA :)