Hi, I used this formula in one column on Sheet 1, it looks at Sheet 2 and finds the Site Name and if the Status is Committed, it pulls in the number of Committed Trees. It works just fine for the Committed Trees column.
=IF(INDEX({Inventory Agreements - Status}, MATCH([Site Name]@row, {Inventory - Site Name}, 0)) = "Committed", INDEX({Inventory Agreements - # Trees}, MATCH([Site Name]@row, {Inventory - Site Name}, 0)), "")
I would also like to use this formula in another column on Sheet 1, the Potential Trees column, the only think that is different is the status it's looking for on Sheet 2 is Pending instead of Committed. Nothing is being returned when I change the Status in the formula. Any suggestions why it's not working on the Potential Trees column?
=IF(INDEX({Inventory Agreements - Status}, MATCH([Site Name]@row, {Inventory - Site Name}, 0)) = "Pending", INDEX({Inventory Agreements - # Trees}, MATCH([Site Name]@row, {Inventory - Site Name}, 0)), "")
Thanks!