ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Calling a Macro from module (https://www.excelbanter.com/excel-programming/351078-calling-macro-module.html)

peter.thompson[_61_]

Calling a Macro from module
 

I have Public Sub Unlockbuttons() Macro recorded in a module.

How do I execute this macro from within code in a userform. I'm using
this code:

If Sheet6.Range("f49") = 0 And Sheet6.Range("f59").Text =
Sheet6.Range("f50").Text Then

'Here is where I need the code to execute the Unlockbuttons macro

Would appreciate any guideance
Cheers

Peter (Working my way through first VBA project)


--
peter.thompson
------------------------------------------------------------------------
peter.thompson's Profile: http://www.excelforum.com/member.php...o&userid=29686
View this thread: http://www.excelforum.com/showthread...hreadid=503579


Norman Jones

Calling a Macro from module
 
Hi Peter,

Try:

With Sheets("Sheet6")
If .Range("F49").Value = 0 _
And .Range("F59").Value = .Range("F50").Value Then
Call UnlockButtons
End If
End With

---
Regards,
Norman



"peter.thompson"
<peter.thompson.21yxly_1137819601.3662@excelforu m-nospam.com wrote in
message news:peter.thompson.21yxly_1137819601.3662@excelfo rum-nospam.com...

I have Public Sub Unlockbuttons() Macro recorded in a module.

How do I execute this macro from within code in a userform. I'm using
this code:

If Sheet6.Range("f49") = 0 And Sheet6.Range("f59").Text =
Sheet6.Range("f50").Text Then

'Here is where I need the code to execute the Unlockbuttons macro

Would appreciate any guideance
Cheers

Peter (Working my way through first VBA project)


--
peter.thompson
------------------------------------------------------------------------
peter.thompson's Profile:
http://www.excelforum.com/member.php...o&userid=29686
View this thread: http://www.excelforum.com/showthread...hreadid=503579




peter.thompson[_62_]

Calling a Macro from module
 

Thanks Norman, much appreciated

Cheers

Peter


--
peter.thompson
------------------------------------------------------------------------
peter.thompson's Profile: http://www.excelforum.com/member.php...o&userid=29686
View this thread: http://www.excelforum.com/showthread...hreadid=503579



All times are GMT +1. The time now is 03:22 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com