Gurus,
I have been struggling with this problem for several hours... and I am guessing someone has a very basic script that takes care of my problem and is much cleaner.
To this point I am able to generate a snippet of what I am trying to create with the following script...
Sub LookUp1()
Dim Topic As Long
Topic = Range("B" & Rows.Count).End(xlUp).Row
Range("C3:C" & Topic).FormulaArray = _
"=INDEX('Clarification Log'!R1C3:R100C3,MATCH(RC[-1]&""X"",'Clarification Log'!R1C2:R100C2&'Clarification Log'!R1C4:R100C4,0))"
End Sub
This array gets copied down the length of my column, but the formula is not dynamic and pastes the exact same formula in all cells.
Ideally, I'd have a mutiple criteria lookup that does not use an array...
Any thoughts?
I have been struggling with this problem for several hours... and I am guessing someone has a very basic script that takes care of my problem and is much cleaner.
To this point I am able to generate a snippet of what I am trying to create with the following script...
Sub LookUp1()
Dim Topic As Long
Topic = Range("B" & Rows.Count).End(xlUp).Row
Range("C3:C" & Topic).FormulaArray = _
"=INDEX('Clarification Log'!R1C3:R100C3,MATCH(RC[-1]&""X"",'Clarification Log'!R1C2:R100C2&'Clarification Log'!R1C4:R100C4,0))"
End Sub
This array gets copied down the length of my column, but the formula is not dynamic and pastes the exact same formula in all cells.
Ideally, I'd have a mutiple criteria lookup that does not use an array...
Any thoughts?