Can I make an IF reference in another sheet and then Index / Match?

Hi!
I'm trying to make an IF formula that will look to see if a specific type of equipment is ordered, and if the PO has been issued, then move the checkbox to another sheet with Index / Match.
Here's a simpler one without the IF...
=IFERROR(INDEX({2024 GC and Contractor Sheet - Bids Range 1}, MATCH([WBS@row], {2024 GC and Contractor Sheet - Bids Range 2}, 0)), "")
Thanks!
Rose
Best Answer
-
Try an IF/COUNTIFS instead.
=IF(COUNTIFS({Vendor}, @cell = "Gilbarco", {Checkbox}, @cell = 1)> 0, 1)
Answers
-
Are you able to provide some screenshots for context?
-
Sure - I hope this helps...
Source Sheet:
If the Vendor is Gilbarco
And the PO Issued is checked....
In the sheet that will receive the IF / Index / Match
The GVR PO Issued checkbox should populate.
Thank you!
-
Try an IF/COUNTIFS instead.
=IF(COUNTIFS({Vendor}, @cell = "Gilbarco", {Checkbox}, @cell = 1)> 0, 1)
-
Woo hoo! That does the trick thank you so much, Paul!
Help Article Resources
Categories
Check out the Formula Handbook template!