I know if you paste the data into power point keeping the source formatting then copy and paste it back it should lose the conditions.
I guess it depends on how many rows and columns you're talking about as to whether this is practical or not.
Usually my data sets are pretty manageable so its not a big deal.
add sort column
fill series 1 to EoS (End of Sheet)
for each of the conditional formats
sort sheet/range by that format
select a conditionally formatted cell of interest
hit 'Format Painter' and paint the desired cells accordingly
next
sort sheet/range by sort column
delete sort column
rivate Sub Worksheet_SelectionChange(ByVal Target As Range) Dim ws As Worksheet
Dim mySel As Range, aCell As Range
'~~> Change this to the relevant sheet
Set ws = ThisWorkbook.Sheets("October_Meeting_#_1")
'~~> Change this to the relevant range
Set mySel = ws.Range("b41:c10")
For Each aCell In mySel
With aCell
.Font.FontStyle = .DisplayFormat.Font.FontStyle
.Interior.Color = .DisplayFormat.Interior.Color
.Font.Strikethrough = .DisplayFormat.Font.Strikethrough
End With
Next aCell
End Sub