M
Miree
I have the following code which enters the formula
=IF(F21="","",IF(ISNA(MATCH(F21,Densities!O:O,0)),"",INDEX(Densities!O,MATCH(F21,Densities!O:O,0),2)))
into the cells, I need the code to perform the the calculation insted of
putting it in to the cells.
Range("H21").Select
ActiveCell.FormulaR1C1 = _
"=IF(RC[-2]="""","""",IF(ISNA(MATCH(RC[-2],Densities!C[7],0)),"""",INDEX(Densities!C[7]:C[8],MATCH(RC[-2],Densities!C[7],0),2)))"
Selection.AutoFill Destination:=Range("H21:H39"), Type:=xlFillDefault
Range("H21:H39").Select
Range("H21").Select
=IF(F21="","",IF(ISNA(MATCH(F21,Densities!O:O,0)),"",INDEX(Densities!O,MATCH(F21,Densities!O:O,0),2)))
into the cells, I need the code to perform the the calculation insted of
putting it in to the cells.
Range("H21").Select
ActiveCell.FormulaR1C1 = _
"=IF(RC[-2]="""","""",IF(ISNA(MATCH(RC[-2],Densities!C[7],0)),"""",INDEX(Densities!C[7]:C[8],MATCH(RC[-2],Densities!C[7],0),2)))"
Selection.AutoFill Destination:=Range("H21:H39"), Type:=xlFillDefault
Range("H21:H39").Select
Range("H21").Select