Hello,
I currently have 2 sheets that I am working with: the first is the "Original" sheet and the other is a "Metrics" sheet, which pulls data from the original (being used for Dashboard charts).
The "Original" sheet has an "ID" column, a "Status" column (either "OPEN" or "CLOSED"), and "# of Days" column. On the metrics sheet, I would like all of the IDs to automatically populate when the Status is "CLOSED" on the Original sheet. There are many IDs at one time on the Original sheet that have a "CLOSED" Status.
How can I get multiple IDs to populate in consecutive rows using conditionals and external sheet referencing. Ideally if the "CLOSED" status on the Original sheet = true, I would like the ID, Status, and # of Days for all the applicable entries to appear on the metrics sheet.
I utilized the following equation: =INDEX({ID}, MATCH("CLOSED", {Status}, 0))
However, this is ONLY returning the 1st ID for which the Status = "CLOSED" on the Original sheet. I would also like the other 6 IDs for which the Status = "CLOSED" to appear on the Metrics sheet. My main question is to how I can have multiple column values (ID, Status, # of Days) appear on the Metrics sheet when one conditional is met on the Original data sheet and for ALL qualifying pieces of data.
Thanks for all your help!