Okay:
I have two tables, A (columns A, B, C) and B (columns E, F, G)
I have Three input fields, one for each column of Table A: INPUT1 (column A1) and INPUT2 (column A2) and INPUT3 (column A3)
I would like to be able to type data into INPUT1 and INPUT2 and INPUT3 and have it locate and count the matching data in table A and output the rows to table B. Of course, any data that is output must meet ALL criteria present in all imput fields, blanks aside. Also, I would like the matching rows in table A to be highlighted red when that row matches the criteria presented.
My code thus far is:
FOR COUNTING:
=COUNTIF(Material_Name,C2)
FIRST CELL OF TABLE B, COLUMN E (EXPANDED TO REST OF TABLE)
=IF(ROWS(V$7:V7)<=$C$4,INDEX(INDIRECT(V$6),SMALL(IF(Material_Name=$C$2,ROW(Material_Name)-ROW($C$7)+1),ROWS(V$7:V7))),"")
Thanks,
PR
PS, that youtube video was uploaded by me - displaying the issues I am having with my own excel sheet. Words can only do so much to help here.