VBA - delete column, if conditional formatting negative throughout the whole column

rider98

New Member
Joined
Jan 18, 2017
Messages
2
Hi, I format a table row-wise with the following code:

Code:

Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=MIN($T2:$DZ2)=T2"
Selection.FormatConditions(1).Interior.ColorIndex = 37

and this, if an "x" occurs in a cell:
Code:

If InStr(1, rngCell.Value, "x") > 0 Then
rngCell.Interior.ColorIndex = 27
rngCell.Interior.ColorIndex = xlNone
End If

By this code the cell with the lowest number in a row is coloured with color no. 37 (blue). If there occurs any "x", the cell is coloured with color no. 27 (yellow).

I would like to delete all columns which contain not a single cell coloured blue or yellow by the above mentioned conditional formatting.

Maybe someone can help me on that matter.

Here's an example-file: Dropbox - Test - Kopie.xlsx

In this example, the columns T, W, X, AB, AC, AF, AJ, AL, AN, AP, AR und AS should be deleted by this code.

Thanks in advance for your help.

Best regards,
Mark
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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