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
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
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
Here's one way - adjust the range in the testit routine as needed:
If your Office version is actually later than the 2007 in your profile, you could also use Fluff's method.![]()
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
Everyone who confuses correlation and causation ends up dead.
Oops, never thought of thatIf your Office version is actually later than the 2007 in your profile, you could also use Fluff's method.![]()
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!!!
Add red snippet below Fluff13 code...
![]()
Cl.Interior.Color = Cl.DisplayFormat.Interior.Color Cl.FormatConditions.Delete
Glad I could contribute...Tx for unexpected rep +![]()
Glad to help & thanks for the feedback.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks