Excel VBA Remove Range Fill Color

The following line of code removes the fill color of the range A1:B2:

Range("A1:B2").Interior.Color = xlNone

The following line of code does the same:

Range(Cells(1, 1), Cells(2, 2)).Interior.Color = xlNone

Before:

Excel VBA, Fill Color, Remove Before
After:

Excel, VBA, Fill Color, Remove, Range

See also:

If you need assistance with your code, or you are looking for a VBA programmer to hire feel free to contact me. Also please visit my website  www.software-solutions-online.com

Leave a Reply

Your email address will not be published. Required fields are marked *