As long as the button is on the Records sheet, I think you could get away with
doing this:
LRow = Range("A41").Value
But maybe you could just use the row with the activecell???
LRow = activecell.row
> I am using the following code to import record from another sheet so the
> record can be modified. The user has to look at the "Records" sheet, find the
[quoted text clipped - 89 lines]
>
> End Sub

Signature
Dave Peterson
Gizmo - 31 Mar 2008 04:55 GMT
Dave,
Thank you very much.
LRow = activecell.row did the trick.
I've been trying all sorts of combinations including
LRow=Range("A41").Value and nothing worked.
Thanks again.
> As long as the button is on the Records sheet, I think you could get away with
> doing this:
[quoted text clipped - 98 lines]
> >
> > End Sub