I have an formula that looks up the value in Column A against another system. I have this copy/paste macro that is working fine, however I have to change the values in order for it to work.
CopyPaste Macro
' Dim I
For i = 1 To 15
ActiveCell.FormulaR1C1 = "=MMSIDLookupItemCount(RC[-1])"
ActiveCell.Offset(1).Select
Next i
This puts the formula in column B. What I would really like to do is loop through until there is a blank cell in column A and I have tried many different things and I can't get it to work.
Would anyone be able to help? I am really trying to learn my VBA but my skills are very basic!