ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Can Excel cell formatting be included in an IF statement? (https://www.excelbanter.com/excel-worksheet-functions/46570-can-excel-cell-formatting-included-if-statement.html)

neeses

Can Excel cell formatting be included in an IF statement?
 
We run a macro that selects duplicates and formats with background with a
color. We need to include that cell formatting in an IF statement. Can it be
done and, if so, what would be the syntax?

Bob Phillips

No, but you can add conditional formatting to the cell, and test the value
there and set the format accordingly.

--
HTH

Bob Phillips

"neeses" wrote in message
...
We run a macro that selects duplicates and formats with background with a
color. We need to include that cell formatting in an IF statement. Can it

be
done and, if so, what would be the syntax?




neeses

Bob,

Thanks for the reply. My next question is: Is there some way to delete cells
with the formatted background, either through a macro or some function?


"Bob Phillips" wrote:

No, but you can add conditional formatting to the cell, and test the value
there and set the format accordingly.

--
HTH

Bob Phillips

"neeses" wrote in message
...
We run a macro that selects duplicates and formats with background with a
color. We need to include that cell formatting in an IF statement. Can it

be
done and, if so, what would be the syntax?





Bob Phillips

Do you mean CF formats

Sub FCs()
Dim cell As Range
Dim fc As FormatCondition

For Each cell In ActiveSheet.UsedRange
If cell.FormatConditions.Count 0 Then
For Each fc In cell.FormatConditions
fc.Delete
Next fc
End If
Next cell

End Sub

or ordinary formats

Dim cell As Range

For Each cell In ActiveSheet.UsedRange
cell.ClearFormats
Next cell


--
HTH

Bob Phillips

"neeses" wrote in message
...
Bob,

Thanks for the reply. My next question is: Is there some way to delete

cells
with the formatted background, either through a macro or some function?


"Bob Phillips" wrote:

No, but you can add conditional formatting to the cell, and test the

value
there and set the format accordingly.

--
HTH

Bob Phillips

"neeses" wrote in message
...
We run a macro that selects duplicates and formats with background

with a
color. We need to include that cell formatting in an IF statement. Can

it
be
done and, if so, what would be the syntax?








All times are GMT +1. The time now is 09:43 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com