Copy and Pasting Data without Unhiding Columns

ERed1

Board Regular
Joined
Jun 26, 2019
Messages
104
Hi all,

Here is some code that I am using to hide columns in my sheet labeled as "Finished". I have a button copy and paste data into my "Finished" sheet, but these hidden columns keep on appearing when they aren't suppose to. The columns are hidden, because they do not apply to what is being pasted, yet. Can anyone help me figure this out or help me write a new code? Thanks in advance!

Code:
If Not Intersect(Target, Range("D18:D25")) Is Nothing Then
If Application.CountIf(Range("D18:D25"), "Dog") > 0 Then
Columns("N:W").EntireColumn.Hidden = False
Else
Columns("N:W").EntireColumn.Hidden = True
End If
End If
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Can you post the whole procedure?
 
Upvote 0

Forum statistics

Threads
1,216,050
Messages
6,128,498
Members
449,455
Latest member
jesski

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