SarahMS1

New Member
Joined
Jan 29, 2020
Messages
20
Office Version
  1. 2016
Platform
  1. Windows
i have this toggle button code that hides and unhides for me column E and D but now i want to also hide column P at the same time with them but without hididing the columns between them i just want to hide E,D,P

i use this code but i’m writing this on my phone but just to get an idea

private sub togglebutton_click()
columns (“E:D”) .Hidden = Not Columns (“E:D”) .hidden

thanks!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi,

try

VBA Code:
Private Sub togglebutton_click()
    Range("E:E,D:D,P:P").EntireColumn.Hidden = Not Range("E:E,D:D,P:P").EntireColumn.Hidden
End Sub

Dave
 
Upvote 0
another one

VBA Code:
Private Sub ToggleButton1_Click()
    With Range("D1,E1,P1").EntireColumn
        .Hidden = Not .Hidden
    End With
End Sub
 
Upvote 0
Hi,

try

VBA Code:
Private Sub togglebutton_click()
    Range("E:E,D:D,P:P").EntireColumn.Hidden = Not Range("E:E,D:D,P:P").EntireColumn.Hidden
End Sub

Dave

Yes thank you so much dave it worked ?
 
Upvote 0

Forum statistics

Threads
1,215,830
Messages
6,127,134
Members
449,361
Latest member
VBquery757

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top