+ Reply to Thread
Results 1 to 3 of 3

Duplicates - selected column - highlighting - colour

Hybrid View

  1. #1
    Registered User
    Join Date
    02-07-2019
    Location
    Poland
    MS-Off Ver
    Excel 2013
    Posts
    1

    Duplicates - selected column - highlighting - colour

    Hello,

    I would like to create a macro where user will be able to choose the column symbol, then macro will colour all the duplicates in the column chosen.

    I have created such macro but for empty cells. How could I change it for duplicates? Could you please help?

    Below is the code for highlighting empty cells after users choice of the column symbol:
    Sub empty()
    Dim kol As String
    Dim ost As Long
    ost = Cells(Rows.Count, "A").End(xlUp).Row
     kol = InputBox("Enter column symbol: B, C...etc.", "Column symbol", "B")
     If kol = vbNullString Then
     Exit Sub
     End If
     If IsNumeric(kol) Then
     MsgBox "You entered number, please enter column symbol", vbInformation, "ERROR"
     Exit Sub
     End If
    If ost < 5 Then Exit Sub
    Range("A5:E" & ost).Interior.Color = xlNone
        Range(Cells(5, kol), Cells(ost, kol)).SpecialCells(xlCellTypeBlanks).Select
        With Selection.Interior
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
            .Color = 65535
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
    End Sub

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: Duplicates - selected column - highlighting - colour

    Code Tags Added
    Your post does not comply with Rule 2 of our Forum RULES. Use code tags around code.

    Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found at http://www.excelforum.com/forum-rule...rum-rules.html



    (I have added them for you today. Please take a few minutes to read all Forum Rules and comply in the future.)
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Forum Expert KOKOSEK's Avatar
    Join Date
    08-03-2018
    Location
    Pole in Yorkshire, UK
    MS-Off Ver
    365/2013
    Posts
    2,765

    Re: Duplicates - selected column - highlighting - colour

    I've found ut somewhere on my disk. Take a look on it. Should be hint in it:

    Sub DuplicateValuesInColumns()
    Dim myCell As Range
    Dim myRow As Integer
    Dim myRange As Range
    Dim myCol As Integer
    Dim i As Integer
    myRow = Range(Cells(1, 1), Cells(1, 1).End(xlDown)).Count
    myCol = Range(Cells(1, 1), Cells(1, 1).End(xlToRight)).Count
    For i = 2 To myCol
     Set myRange = Range(Cells(2, i), Cells(myRow, i))
      For Each myCell In myRange
       If WorksheetFunction.CountIf(myRange, myCell.Value) > 1 Then
          myCell.Interior.ColorIndex = 3
       End If
      Next myCell
    Next i
    End Sub
    Happy with my answer * Add Reputation.
    If You are happy with solution, please use Thread tools and mark thread as SOLVED.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Highlighting selected row/column
    By jokris in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 03-28-2016, 02:06 AM
  2. [SOLVED] Highlighting row and column of selected cell - revisited
    By adamsc57 in forum Excel General
    Replies: 5
    Last Post: 07-15-2015, 05:32 PM
  3. Copy selected colour items from one column to another by vba
    By anindya.zen in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-25-2014, 01:37 AM
  4. [SOLVED] Highlighting text in a column- a different colour for the amount of times it is repeated
    By gavwalsh in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-11-2013, 04:44 AM
  5. Replies: 6
    Last Post: 02-16-2013, 07:29 AM
  6. Highlighting selected cells in column B and C
    By chrisjack in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-05-2012, 04:36 PM
  7. Highlighting the selected row or column
    By Lewis Clark in forum Excel General
    Replies: 4
    Last Post: 05-02-2005, 09:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1