The following piece of code works. However, before performing the loop, I would like to select the range where I am placing the array formula and paste is as values instead of leaving the formula in the range.
Entering code using copy and paste special returns #N/A error as does this
Begging your pardon but I am a very novice code writer. I appreciate any assistance.
Code:
Sub Macro1()
Range("A1").Select
Do
Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(720, 0)).FormulaArray _
= "=QLink|Bars!'" & ActiveCell.Value & ,60,720,C,FILL'"
ActiveCell.Offset(0, 1).Select
Loop Until IsEmpty(ActiveCell)
End Sub
Entering code using copy and paste special returns #N/A error as does this
Code:
Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(720, 0)).Value _
= Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(720, 0)).Value
Begging your pardon but I am a very novice code writer. I appreciate any assistance.