Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 921
Default VBA to check if checkbox is toggle-on

Hi, I am trying to use Excel VBA to block SAP vendor master MK05 by toggle-on
"selected Purchasing organization' checkbox. However, there are some vendor
had already been blocked previously and should skip checkbox activatation.

How do make use of VBA to check if the checkbox is active and then skip ?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default VBA to check if checkbox is toggle-on

Hi Jeff,

'---------------------
Hi, I am trying to use Excel VBA to block SAP vendor master MK05 by
toggle-on
"selected Purchasing organization' checkbox. However, there are some vendor
had already been blocked previously and should skip checkbox activatation.

How do make use of VBA to check if the checkbox is active and then skip ?
'---------------------

If your question relates to verfying the status of a checkbox, try something
like:

'=============
Private Sub CheckBox1_Click()
If Sheets("Sheet1").CheckBox1.Value = True Then
MsgBox "CheckBox1 Is Checked!"
Else
MsgBox "Not checked"
End If
End Sub
'<<=============

If, however your question relates to the use of other software, perhaps
your question should more properly be addressed elsewhere.


---
Regards,
Norman


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
check/uncheck a checkbox leonidas[_38_] Excel Programming 3 July 6th 06 11:24 AM
check a checkbox in a formula big t Excel Worksheet Functions 1 June 16th 05 06:32 PM
Checkbox toggle true/false Donkin Excel Programming 3 June 2nd 05 09:37 AM
Use checkbox to toggle between formula and manual input packat Excel Programming 9 December 22nd 04 12:16 PM
Checkbox value X instead of check Todd Huttenstine Excel Programming 3 February 10th 04 03:22 AM


All times are GMT +1. The time now is 02:55 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"