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

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.

Forum statistics

Threads
1,225,757
Messages
6,186,850
Members
453,379
Latest member
gabriellegonzalez

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