vba to shade cell of powerpoint table

semidevil

New Member
Joined
Jul 9, 2007
Messages
35
I have a code that loops through a worksheet and copies data to a powerpoint table. I'm trying to also make it where it will highlight the cell with a color if it is a certain value. I can't seem to get it to work. Any help would be appreciated.
Code:
j = 1
With ppslide.Shapes("table1")
For k = 3 To ThisWorkbook.Worksheets("ws").Range("K1").Value + 2
j = 1
    For i = 1 To 7
        .Select
        .Table.Cell(k, i).Shape.TextFrame.TextRange.Text = Format(ThisWorkbook.Sheets("ws").Range("L6").Offset(k - 3, j - 1).Value, "0.00")
        If ppslide.Shapes("table1").Cell(k, j + 1).Shape.TextFrame.TextRange.Text < 0 Then
        ppslide.Shapes("table1").Shape.ForeColor.RGB = RGB(248, 228, 211)
        End If
        
        j = j + 1
    Next i
Next k
End With
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.

Forum statistics

Threads
1,223,631
Messages
6,173,465
Members
452,516
Latest member
archcalx

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top