Sign in to join the conversation:
Is it possible to do an Index and Match referencing another sheet? My formula works when I am using data on the same sheet but when I try to reference a different sheet it does not work.
Yes it does.
If you post your formula, we might be able to tell you why it isn't working.
Are you getting an error message?
Craig
Here is my forumula:
=VLOOKUP(1, {2Testing_WFO (BO)_Master Sheet Range 1}, 2, false)
I am looking up the value of "1" in column A. If it finds "1" then return the value of the column B. The result I am getting is it display the correct value in B but it just repeats that value.
In the sheet I am referencing I have selected my range.
Thank you!
By 'repeating the value' do you mean you copy the formula to the rest of your column?
If so, the first argument (1) is what you are searching for. It will always find the same value from column B because you are always looking for the same thing.
You want to replace the 1 with something that is unique on each row (and needs to match in the source sheet)
Hi There, I'd like to count the cells which year belongs to 2024, seems the formula I wrote cannot capture the correct volume, may I seek your help for it? which part is wrong in my formula? Details as following: My formula: Reference column: Thanks in advance!
I wanted to join the text(PM names,ID) in two or more cells which is basically multivalue cells and display the same one below other and also i want the duplicate names also to be displayed
=IF([Due Date]@row > TODAY(), IF(AND(Status@row = "In Progress", Status@row = "New", Status@row = "Not Started"), "Yes", "No"))) The goal is to flag items for escalation based on the due date and status. If the due date is in the past and the status of the risk or decision is in progress, not started, or new then I need to…