+ Reply to Thread
Results 1 to 14 of 14

How to convert conditional formatting into true color using VBA?

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    04-28-2016
    Location
    Stavanger, Norway
    MS-Off Ver
    365
    Posts
    142

    How to convert conditional formatting into true color using VBA?

    Hi,

    If I have a table with different colors through conditional formatting, how can I convert the colored cells in this table from conditional color to true color using VBA?

    Thanks

  2. #2
    Forum Guru
    Join Date
    09-10-2017
    Location
    Chippenham, England
    MS-Off Ver
    365
    Posts
    15,755

    Re: How to convert conditional formatting into true color using VBA?

    How about
    Sub mss()
       Dim Cl As Range
       
       For Each Cl In ActiveSheet.UsedRange
          If Cl.DisplayFormat.Interior.Color <> 16777215 Then
             Cl.Interior.Color = Cl.DisplayFormat.Interior.Color
          End If
       Next Cl
    End Sub

  3. #3
    Forum Contributor
    Join Date
    04-28-2016
    Location
    Stavanger, Norway
    MS-Off Ver
    365
    Posts
    142

    Re: How to convert conditional formatting into true color using VBA?

    Quote Originally Posted by Fluff13 View Post
    How about
    Sub mss()
       Dim Cl As Range
       
       For Each Cl In ActiveSheet.UsedRange
          If Cl.DisplayFormat.Interior.Color <> 16777215 Then
             Cl.Interior.Color = Cl.DisplayFormat.Interior.Color
          End If
       Next Cl
    End Sub
    This does not seem to work?

  4. #4
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: How to convert conditional formatting into true color using VBA?

    Here's one way - adjust the range in the testit routine as needed:

    Private Declare Function OpenClipboard Lib "user32.dll" (ByVal hwnd As Long) As Long
    Private Declare Function CloseClipboard Lib "user32.dll" () As Long
    Private Declare Function EnumClipboardFormats Lib "user32" (ByVal wFormat As Long) As Long
    Private Declare Function GetClipboardFormatName Lib "user32" Alias "GetClipboardFormatNameA" ( _
                                                    ByVal wFormat As Long, ByVal lpString As String, _
                                                    ByVal nMaxCount As Long) As Long
    
    Private Declare Function SetClipboardData Lib "user32" (ByVal wFormat As Long, ByVal hMem As Long) As Long
    Private Declare Function GetClipboardData Lib "user32.dll" (ByVal wFormat As Long) As Long
    Private Declare Function GlobalLock Lib "kernel32.dll" (ByVal hMem As Long) As Long
    Private Declare Function GlobalUnlock Lib "kernel32.dll" (ByVal hMem As Long) As Long
    Private Declare Function lstrlen Lib "kernel32.dll" Alias "lstrlenA" ( _
                                     ByVal lpString As Long) As Long
    Private Declare Function lstrcpy Lib "kernel32.dll" ( _
                                     ByVal lpStr1 As Any, ByVal lpStr2 As Any) As Long
    Sub testit()
        With Range("A1:F21")
            .Select
            .Copy
        End With
        PasteFormattedRange
    End Sub
    Sub PasteFormattedRange()
        Dim S                     As String
        Dim i As Long, CF_Format  As Long
        Dim SaveDisplayAlerts As Boolean, SaveScreenUpdating As Boolean
        Dim HTMLInClipBoard       As Boolean
        Dim Handle As Long, Ptr As Long, FileName As String
    
        'Enumerate the clipboard formats
        If OpenClipboard(0) Then
            CF_Format = EnumClipboardFormats(0&)
            Do While CF_Format <> 0
                S = String(255, vbNullChar)
                i = GetClipboardFormatName(CF_Format, S, 255)
                S = Left(S, i)
                HTMLInClipBoard = InStr(1, S, "HTML Format", vbTextCompare) > 0
    
                If HTMLInClipBoard Then
                    Handle = GetClipboardData(CF_Format)
                    Ptr = GlobalLock(Handle)
                    Application.CutCopyMode = False
                    S = Space$(lstrlen(ByVal Ptr))
                    lstrcpy S, ByVal Ptr
                    GlobalUnlock Ptr
                    SetClipboardData CF_Format, Handle
                    ActiveSheet.PasteSpecial Format:="HTML"
                    Exit Do
                End If
    
                CF_Format = EnumClipboardFormats(CF_Format)
            Loop
            CloseClipboard
        End If
    
    End Sub
    If your Office version is actually later than the 2007 in your profile, you could also use Fluff's method.
    Everyone who confuses correlation and causation ends up dead.

  5. #5
    Forum Contributor
    Join Date
    04-28-2016
    Location
    Stavanger, Norway
    MS-Off Ver
    365
    Posts
    142

    Re: How to convert conditional formatting into true color using VBA?

    Quote Originally Posted by rorya View Post
    Here's one way - adjust the range in the testit routine as needed:

    Private Declare Function OpenClipboard Lib "user32.dll" (ByVal hwnd As Long) As Long
    Private Declare Function CloseClipboard Lib "user32.dll" () As Long
    Private Declare Function EnumClipboardFormats Lib "user32" (ByVal wFormat As Long) As Long
    Private Declare Function GetClipboardFormatName Lib "user32" Alias "GetClipboardFormatNameA" ( _
                                                    ByVal wFormat As Long, ByVal lpString As String, _
                                                    ByVal nMaxCount As Long) As Long
    
    Private Declare Function SetClipboardData Lib "user32" (ByVal wFormat As Long, ByVal hMem As Long) As Long
    Private Declare Function GetClipboardData Lib "user32.dll" (ByVal wFormat As Long) As Long
    Private Declare Function GlobalLock Lib "kernel32.dll" (ByVal hMem As Long) As Long
    Private Declare Function GlobalUnlock Lib "kernel32.dll" (ByVal hMem As Long) As Long
    Private Declare Function lstrlen Lib "kernel32.dll" Alias "lstrlenA" ( _
                                     ByVal lpString As Long) As Long
    Private Declare Function lstrcpy Lib "kernel32.dll" ( _
                                     ByVal lpStr1 As Any, ByVal lpStr2 As Any) As Long
    Sub testit()
        With Range("A1:F21")
            .Select
            .Copy
        End With
        PasteFormattedRange
    End Sub
    Sub PasteFormattedRange()
        Dim S                     As String
        Dim i As Long, CF_Format  As Long
        Dim SaveDisplayAlerts As Boolean, SaveScreenUpdating As Boolean
        Dim HTMLInClipBoard       As Boolean
        Dim Handle As Long, Ptr As Long, FileName As String
    
        'Enumerate the clipboard formats
        If OpenClipboard(0) Then
            CF_Format = EnumClipboardFormats(0&)
            Do While CF_Format <> 0
                S = String(255, vbNullChar)
                i = GetClipboardFormatName(CF_Format, S, 255)
                S = Left(S, i)
                HTMLInClipBoard = InStr(1, S, "HTML Format", vbTextCompare) > 0
    
                If HTMLInClipBoard Then
                    Handle = GetClipboardData(CF_Format)
                    Ptr = GlobalLock(Handle)
                    Application.CutCopyMode = False
                    S = Space$(lstrlen(ByVal Ptr))
                    lstrcpy S, ByVal Ptr
                    GlobalUnlock Ptr
                    SetClipboardData CF_Format, Handle
                    ActiveSheet.PasteSpecial Format:="HTML"
                    Exit Do
                End If
    
                CF_Format = EnumClipboardFormats(CF_Format)
            Loop
            CloseClipboard
        End If
    
    End Sub
    If your Office version is actually later than the 2007 in your profile, you could also use Fluff's method.
    Okay thanks, I am using the latest version unfortunately

  6. #6
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: How to convert conditional formatting into true color using VBA?

    Quote Originally Posted by mss90 View Post
    Okay thanks, I am using the latest version unfortunately
    Then I suggest you update your profile. If you are using a version later than 2007, then Fluff's code should work so you'll need to provide more information than just "doesn't seem to work". Although, what I posted should still work, unless you have 64bit Office.

  7. #7
    Forum Contributor
    Join Date
    04-28-2016
    Location
    Stavanger, Norway
    MS-Off Ver
    365
    Posts
    142

    Re: How to convert conditional formatting into true color using VBA?

    Quote Originally Posted by rorya View Post
    Then I suggest you update your profile. If you are using a version later than 2007, then Fluff's code should work so you'll need to provide more information than just "doesn't seem to work". Although, what I posted should still work, unless you have 64bit Office.
    I have updated my profile now, apologies for the inconvenience. I am not sure what to add as the code doesnt make the conditional formatting on the active worksheet into true colors. Nothing seems to change, it just loads for a bit.

  8. #8
    Forum Guru
    Join Date
    09-10-2017
    Location
    Chippenham, England
    MS-Off Ver
    365
    Posts
    15,755

    Re: How to convert conditional formatting into true color using VBA?

    If your Office version is actually later than the 2007 in your profile, you could also use Fluff's method.
    Oops, never thought of that

  9. #9
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: How to convert conditional formatting into true color using VBA?

    Are you not perhaps wanting to remove conditional formatted color rule and replace with true color...
    i.e. remove the rule and replace...
    Last edited by Sintek; 08-11-2020 at 07:20 AM.
    Good Luck...
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
    Also....Add a comment if you like!!!!
    And remember...Mark Thread as Solved...
    Excel Forum Rocks!!!

  10. #10
    Forum Contributor
    Join Date
    04-28-2016
    Location
    Stavanger, Norway
    MS-Off Ver
    365
    Posts
    142

    Re: How to convert conditional formatting into true color using VBA?

    Quote Originally Posted by sintek View Post
    Are you not perhaps wanting to remove conditional formatted color rule and replace with true color...
    i.e. remove the rule and replace...
    Yes, in other words I want to remove conditional formatting but to keep the colors

  11. #11
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: How to convert conditional formatting into true color using VBA?

    Add red snippet below Fluff13 code...
    Cl.Interior.Color = Cl.DisplayFormat.Interior.Color
    Cl.FormatConditions.Delete

  12. #12
    Forum Contributor
    Join Date
    04-28-2016
    Location
    Stavanger, Norway
    MS-Off Ver
    365
    Posts
    142

    Re: How to convert conditional formatting into true color using VBA?

    Quote Originally Posted by sintek View Post
    Add red snippet below Fluff13 code...
    Cl.Interior.Color = Cl.DisplayFormat.Interior.Color
    Cl.FormatConditions.Delete
    Thanks, that worked perfectly!

  13. #13
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: How to convert conditional formatting into true color using VBA?

    Glad I could contribute...Tx for unexpected rep +

  14. #14
    Forum Guru
    Join Date
    09-10-2017
    Location
    Chippenham, England
    MS-Off Ver
    365
    Posts
    15,755

    Re: How to convert conditional formatting into true color using VBA?

    Glad to help & thanks for the feedback.

+ 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. [SOLVED] Conditional Formatting when I've 1 TRUE i need to color also 2 FALSE
    By XLalbania in forum Excel General
    Replies: 6
    Last Post: 11-03-2018, 01:23 PM
  2. [SOLVED] Conditional formatting color change if any in row is true
    By CLSSY56 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 10-08-2018, 11:59 AM
  3. [SOLVED] Conditional Formatting with AND() not working when TRUE
    By bbkdude in forum Excel Formulas & Functions
    Replies: 14
    Last Post: 04-24-2017, 03:45 PM
  4. Conditional formatting with formula as TRUE
    By Marcin4111 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-18-2014, 05:25 AM
  5. Replies: 3
    Last Post: 05-30-2014, 10:24 AM
  6. [SOLVED] Conditional formatting to adapt font color to background color
    By jankee in forum Excel General
    Replies: 4
    Last Post: 08-23-2013, 09:38 AM

Tags for this Thread

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