OK, so I have three sheets,
- A job sheet
- A cost sheet
- An quote data sheet (which imports from Xero via a Zap).
In the job and cost sheet I'm interested in recording the quote no. In the quote number column for the job and cost sheets I have these formulas respectively....
=IFERROR(INDEX({DATA_QuoteNo},MATCH([DATA_ID]@row,{DATA_ID},0)),"No Quote")
=IFERROR(INDEX({JOB_QuoteNo},MATCH([JOB_ID]@row,{JOB_ID},0)),"No Quote")
Here is weird part.... the first formula correctly returns quote numbers, but the second formula returns "No Quote"... thinking I had made some sort of formula error I reduced the formula to...
=INDEX({JOB_QuoteNo},MATCH([JOB_ID]@row,{JOB_ID},0))
But the outcome was "No Quote", meaning that the cost sheet reads the job sheet cell as "No Quote" despite all columns being populated with actual quote numbers... weird.
Anyone have any ideas?