How to remove or no fill an excell cell color?

Hi,

How to remove or no fill an excell cell color ?

image

without Set Range Color White

Hi @Suastrian_Dika

You can execute the following macro to remove the color:

Sub RemoveCellColor()
    Dim cell As Range
    
    For Each cell In Selection
        cell.Interior.Pattern = xlNone
    Next cell
End Sub

Hope this helps,
Best Regards.

1 Like

Hi @Suastrian_Dika

Give a try using the Format Cells Activity
image

Regards

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.