If you want the value from B2, you need to change
ActiveWorkbook.ActiveSheet.Cells(1, 2).Value
to
ActiveWorkbook.ActiveSheet.Cells(2, 2).Value
or
ActiveWorkbook.ActiveSheet.Range("B2").Value

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
>>I think Chip meant:
>>
[quoted text clipped - 16 lines]
>
> tp
teepee - 02 Jan 2006 23:47 GMT
> ActiveWorkbook.ActiveSheet.Cells(2, 2).Value
> or
> ActiveWorkbook.ActiveSheet.Range("B2").Value
No still getting a 1 value.It's almost as though it won't accept a value
from a userform button on wmp when it is an active object.
> It's supposed to take the value of the formula in cell B2
I meant A2 of course