Possible to filter only ALL CAPS values from a column using vba?

jrincar

New Member
Joined
Oct 26, 2016
Messages
10
I have recently created a macro to pull specific information from a very large spreadsheet to a new page. Column A is all category codes, Column B is all Category Titles and column C is Dollar Amounts. In column B, I have Category Titles in all caps and Subcategory Titles starting with a capital then continuing in all lower case.

I have auto filters applied to A and C, one is to filter out 0 values and one to filter NULL values. What I need now is to sort through Column B and remove the entire row of data if column B's value is in all caps. If I could actually move them to a table beside the current one that would be preferable, maybe store the values removed in an array somehow?

Anyways I am a beginner and apologize if this has been asked before but I couldn't find it. All help is appreciated.
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hello

If you are using an Autofilter, I would add a column with the EXACT function.
The EXACT function can distinguish between ALL CAPS and All caps.
So return TRUE or FALSE and use that column in your autofilter.
If wanted, you can move the FALSE rows to a different table.
 
Upvote 0
Hello

If you are using an Autofilter, I would add a column with the EXACT function.
The EXACT function can distinguish between ALL CAPS and All caps.
So return TRUE or FALSE and use that column in your autofilter.
If wanted, you can move the FALSE rows to a different table.

Sounds promising, will get started on it. Thanks for the speedy reply.
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,939
Members
449,094
Latest member
teemeren

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