Hi,
I have a VLOOKUP pulling in data from another sheet that will be updated on an ongoing basis. The data pulling in is the number of manufacturing days to complete an operation. The VLOOKUP function is working fine.
This is the VLOOKUP formula: =VLOOKUP([Model Series]@row, {Mfg Hours by Model Range 1}, 7, false)
Within the main sheet, I have a second formula (in a different cell) that is looking to the manufacturing start date and then adding the working days necessary to manufacture (looking to the cell with the VLOOKUP data) to then produce the completion data.
This is the formula: =WORKDAY([Mfg Start Date]@row, [Mfg Days Lookup]@row)
The problem is that the WORDAY formula is kicking out this error: #INVALID DATA TYPE
All columns have the same data type in column properties. If I add an IFERROR function before the WORKDAY formula, it kicks out the IFERROR result every time.
Is the issue linking to VLOOKUP data? Is there a better way to do this?
Thanks!