A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

check box for hiding columns



 
 
Thread Tools Display Modes
  #1  
Old June 16th, 2004, 10:17 AM
Berend Botje
external usenet poster
 
Posts: n/a
Default check box for hiding columns

The script can be made shorter:

Private Sub CheckBox1_Click()
if checkbox1.value = true then
Range("A4:A10").EntireRow.Hidden = true
Else
Range("A4:A10").EntireRow.Hidden = false
End Sub

Also this should be more comprehensible for somebody that just started
working with VBA.


---
Message posted from http://www.ExcelForum.com/

  #2  
Old June 16th, 2004, 10:42 AM
Berend Botje
external usenet poster
 
Posts: n/a
Default check box for hiding columns

Sorry, forgot the "end if" command.

Private Sub CheckBox1_Click()
if checkbox1.value = true then
Range("A4:A10").EntireRow.Hidden = true
Else
Range("A4:A10").EntireRow.Hidden = false
End if
End Sub


---
Message posted from http://www.ExcelForum.com/

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:37 PM.


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