Isn't the problem just because of a typo? wkbCurrent vs wrbcurrent
> > Dim wkbCurrent As Workbook
> > Set wrbcurrent = ActiveWorkbook
> > wrbcurrent.Activate
On Apr 28, 11:12 am, "Earl Kiosterud" <some...@nowhere.com> wrote:
> Try
> ActiveSheet.Paste
[quoted text clipped - 41 lines]
>
> - Show quoted text -
Thanks that worked
Earl Kiosterud - 28 Apr 2008 23:33 GMT
GB,
That's a separate problem. With Option Explicit, the line "Set wrbcurrent = ActiveWorkbook"
would fail because wrbcurrent had never been dimmed (because of the typo). But without it,
that line would create a workbook object that would be the active workbook.
Option Explicit is there for just these kinds of problems. Not using it is like driving 100
MPH on the local interstate, and declaring it a safe thing to do because you did it once and
didn't have a wreck. Some people think like that! :)

Signature
Regards from Virginia Beach,
Earl Kiosterud
www.smokeylake.com
If life deals you lemons, make lemonade; if it deals you tomatoes,
make Bloody Marys.
-----------------------------------------------------------------------
> Isn't the problem just because of a typo? wkbCurrent vs wrbcurrent
>
[quoted text clipped - 49 lines]
>
> Thanks that worked