How to copy visible cells after filter in VB
Closed
Lavanya
-
Jun 11, 2010 at 07:00 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 13, 2010 at 10:33 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 13, 2010 at 10:33 AM
Related:
- Vba copy visible cells after autofilter
- Vba select visible cells after filter - Best answers
- Vba select visible cells - Best answers
- Vba case like - Guide
- Your account is not visible to people on facebook, and you can't use it. - Facebook Forum
- To protect you, your profile is not visible to people on facebook and you can't use your account. - Facebook Forum
- Make passwords visible - Guide
- Help! My FB account is not visible anymore ✓ - Facebook Forum
19 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 11, 2010 at 07:18 AM
Jun 11, 2010 at 07:18 AM
Before you apply the filter, find out the max number of rows
Then apply the filter
Now copy for row to last row (as evaluated before)
Rows("2:" & lMaxRow).copy
row I am using as example, you can have a range
When you paste it will only paste visible rows
Then apply the filter
Now copy for row to last row (as evaluated before)
Rows("2:" & lMaxRow).copy
row I am using as example, you can have a range
When you paste it will only paste visible rows