Excel by filter color VBA code

Source: Internet
Author: User
Tags first row

In Excel, using the simple visualization method is difficult to filter by color, so we can only use VBA code to implement it.

The following code has the function of hiding the column data of the current cell with the row of the current cell in addition to the first row, the header column of the data.

If you have other requirements, please modify the code yourself.

Sub Filtercolor ()

Dim Userow, AC

Userow = Cells.specialcells (xlCellTypeLastCell). Row

If activecell.row > Userow Then

MsgBox "Out of range, please select data or interesting cells!", vbexclamation, "error"

Else

AC = Activecell.column

Cells.EntireRow.Hidden = False

For i = 2 to Userow

If Cells (i, AC). Interior.ColorIndex <> ActiveCell.Interior.ColorIndex Then

Cells (i, AC). Entirerow.hidden = True

End If

Next

End If

End Sub

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.