I have a checkbox column "Inv 3rd Party Vendor." I am needing to index a master sheet with all of our property names, and look to see if the "inv 3rd party Vendor" box is checked in that sheet. If it is, I need it to check the box.
Is there data on each sheet that is unique to each row?
yes. each row has a property name that is unique to that row.
Ok. Try something like this...
=INDEX({Other Sheet Checkbox Column}, MATCH([Property Name Column]@row, {Other Sheet Property Name Column}, 0))
works great!!! Thanks!
SGF
Happy to help! 👍️
so invoice department added and additional column to index and match. They want to pull the "3rd Party Vendor" i copied the formula above and selected the column for the range, but its not quite returning the right info.
Here is the formula i am working with
=INDEX({CRS Vendor Setup Prop Name}, MATCH([Property Info]@row, {CRS Vendor Setup Vendor}))
But its returning the a value from the row above it. "Lumiere Chandler" instead of returning the value i want..."OPS"
Im missing something simple. Would you mind looking at it one more time?
Thanks
Try searching for an EXACT match with a zero at the end of your MATCH function....
=INDEX({CRS Vendor Setup Prop Name}, MATCH([Property Info]@row, {CRS Vendor Setup Vendor}, 0))
comes back with a "No Match"
Is that exact text within the range on the source sheet?
i need it return the value in the cell in the column "3rd Party Vendor Name" corresponding with "Madison at Round Grove" The value i need it to return is "OPS"
Am i using the wrong type of formula?
Yes. I understand what you need. I am just trying to help troubleshoot.
Try just the MATCH function.
=MATCH([Property Info]@row, {CRS Vendor Setup Vendor}, 0)
What happens?
still returns a NO MATCH...hmm
i figured it out.
=INDEX({CRS Vendor Setup Vendor Name}, MATCH([Property Info]@row, {CRS Vendor Setup Prop Name}, 0))
swapped the range values in the index and match.
I am trying to populate a column from Sheet A into Sheet B and Sheet C. My Lookup column for Sheet A is formatted as such so there is a ' in front to account for ones that have a leading 0 and some do not. Each ID should be 6 digits long. I made a helper column looking at this Dealer ID column to try and get rid of that…
am I able to separate this into multiple rows? in a new sheet? Desired Result -
I would like to parse out this data by creating a listing with a row for each person, for each project they appear on, for each month. I think this would only give me the groupings anyways, but this doesnt seem to even get me started - it popped up then people have disappeared.