Need Macro Delete the yellow highlighted column only PPT

sksanjeev786

Well-known Member
Joined
Aug 5, 2020
Messages
961
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi Team,

I need to delete the yellow highlighted column on the table in the PPT table
and table selection pane is "Content Placeholder 8 " so i have almost 50+ slides where we have yellow highlighted so need to delete those column


1692707752254.png
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hi Team,

I need to delete the yellow highlighted column on the table in the PPT table
and table selection pane is "Content Placeholder 8 " so i have almost 50+ slides where we have yellow highlighted so need to delete those column


View attachment 97525
Hi Team,

any update on the above query?

Thanks in advance

Regards
Sanjeev
 
Upvote 0
A few questions...

  1. Will the highlight for the column always occur on the last row of the table? Or can it occur on any row?
  2. Will there always be only one column highlighted? Or can there be more? If more, delete all highlighted columns?
  3. Is the highlighted area made up of two merged cells? If so, delete both columns?
 
Upvote 0
A few questions...

  1. Will the highlight for the column always occur on the last row of the table? Or can it occur on any row?
  2. Will there always be only one column highlighted? Or can there be more? If more, delete all highlighted columns?
  3. Is the highlighted area made up of two merged cells? If so, delete both columns?

Hi Domenic,

Thanks for the response. And here is my points based on the above.

1. Yes, highlighted columns always occur on only last row of the table.
2. Yes, We have multiple columns with highlighted column and that column also need to be deleted.
3. Yes, I need to delete both the columns which are made up of merge cells.

Let us know if you need more details.

Regards
Sanjeev.
 
Upvote 0
The following macro loops through each slide with the active presentation, and then loops through each placeholder with the slide. Then, for each placeholder, it checks whether it contains a table. If so, it deletes all columns where the corresponding cell in the last row is highlighted in yellow...

VBA Code:
Option Explicit

Sub DeleteHighlightedColumnsFromAllTables()

    Dim highlightColor As Long
    highlightColor = RGB(255, 255, 0) 'yellow
    
    Dim currentSlide As Slide
    Dim currentShape As Shape
    For Each currentSlide In ActivePresentation.Slides
        For Each currentShape In currentSlide.Shapes.Placeholders
            If currentShape.HasTable Then
                DeleteHighlightedColumnsFromTable currentShape.Table, highlightColor
            End If
        Next currentShape
    Next currentSlide
    
    MsgBox "Completed!", vbExclamation
    
End Sub

Private Sub DeleteHighlightedColumnsFromTable(ByVal targetTable As Table, ByVal highlightColor As Long)

    Dim lastRow As Long
    Dim lastColumn As Long
    Dim columnIndex As Long
    With targetTable
        lastRow = .Rows.Count
        lastColumn = .Columns.Count
        For columnIndex = lastColumn To 1 Step -1
            If .Cell(lastRow, columnIndex).Shape.Fill.ForeColor.RGB = highlightColor Then
                .Columns(columnIndex).Delete
            End If
        Next columnIndex
    End With
    
End Sub

Hope this helps!
 
Upvote 1
Solution
The following macro loops through each slide with the active presentation, and then loops through each placeholder with the slide. Then, for each placeholder, it checks whether it contains a table. If so, it deletes all columns where the corresponding cell in the last row is highlighted in yellow...

VBA Code:
Option Explicit

Sub DeleteHighlightedColumnsFromAllTables()

    Dim highlightColor As Long
    highlightColor = RGB(255, 255, 0) 'yellow
   
    Dim currentSlide As Slide
    Dim currentShape As Shape
    For Each currentSlide In ActivePresentation.Slides
        For Each currentShape In currentSlide.Shapes.Placeholders
            If currentShape.HasTable Then
                DeleteHighlightedColumnsFromTable currentShape.Table, highlightColor
            End If
        Next currentShape
    Next currentSlide
   
    MsgBox "Completed!", vbExclamation
   
End Sub

Private Sub DeleteHighlightedColumnsFromTable(ByVal targetTable As Table, ByVal highlightColor As Long)

    Dim lastRow As Long
    Dim lastColumn As Long
    Dim columnIndex As Long
    With targetTable
        lastRow = .Rows.Count
        lastColumn = .Columns.Count
        For columnIndex = lastColumn To 1 Step -1
            If .Cell(lastRow, columnIndex).Shape.Fill.ForeColor.RGB = highlightColor Then
                .Columns(columnIndex).Delete
            End If
        Next columnIndex
    End With
   
End Sub

Hope this helps!
Wow!!!! Perfect!!!

Thank you so much for your help on this... :) really appreciate your hard work!!

Regards
Sanjeev
 
Upvote 0
That's great, I'm glad I could help. And thanks for the feedback.

Cheers!
Hi Sir,

Can we have an option like before deleting can I get Msg box saying "Are you sure you want to delete this column" If "yes" then delete that column and move to the next slide and if No exit and also can we have it with Custom slides (1-33,44-55)

Thanks in advance.

Regards
Sanjeev
 
Upvote 0
Okay, I have amended the code so that it specifies the desired slides. And for each highlighted column, a message box is displayed and asks whether to delete it. The user can click on Yes to the delete the column, No to skip the column, and Cancel to exit the sub.

VBA Code:
Option Explicit

Sub DeleteHighlightedColumnsFromAllTables()

    Dim highlightColor As Long
    highlightColor = RGB(255, 255, 0) 'yellow
    
    Dim currentShape As Shape
    Dim slideIndex As Long
    For slideIndex = 1 To 55
        Select Case slideIndex
            Case 1 To 33, 44 To 55
                For Each currentShape In ActivePresentation.Slides(slideIndex).Shapes.Placeholders
                    If currentShape.HasTable Then
                        If Not DeleteHighlightedColumnsFromTable(currentShape.Table, highlightColor) Then Exit Sub
                    End If
                Next currentShape
        End Select
    Next slideIndex
    
    MsgBox "Completed!", vbExclamation
    
End Sub

Private Function DeleteHighlightedColumnsFromTable(ByVal targetTable As Table, ByVal highlightColor As Long) As Boolean

    Dim lastRow As Long
    Dim lastColumn As Long
    Dim columnIndex As Long
    Dim response As VbMsgBoxResult
    Dim slideNameAndColumnHeader As String
    
    With targetTable
        lastRow = .Rows.Count
        lastColumn = .Columns.Count
        For columnIndex = lastColumn To 1 Step -1
            If .Cell(lastRow, columnIndex).Shape.Fill.ForeColor.RGB = highlightColor Then
                .Parent.Parent.Select 'go to slide (optional)
                slideNameAndColumnHeader = .Parent.Parent.Name & " - " & .Cell(1, columnIndex).Shape.TextFrame2.TextRange.Text
                response = MsgBox("Are you sure you want to delete this column?", vbQuestion + vbYesNoCancel, slideNameAndColumnHeader)
                If response = vbCancel Then
                    DeleteHighlightedColumnsFromTable = False
                    Exit Function
                End If
                If response = vbYes Then
                    .Columns(columnIndex).Delete
                End If
            End If
        Next columnIndex
    End With
    
    DeleteHighlightedColumnsFromTable = True
    
End Function

Hope this helps!
 
Upvote 0
Okay, I have amended the code so that it specifies the desired slides. And for each highlighted column, a message box is displayed and asks whether to delete it. The user can click on Yes to the delete the column, No to skip the column, and Cancel to exit the sub.

VBA Code:
Option Explicit

Sub DeleteHighlightedColumnsFromAllTables()

    Dim highlightColor As Long
    highlightColor = RGB(255, 255, 0) 'yellow
   
    Dim currentShape As Shape
    Dim slideIndex As Long
    For slideIndex = 1 To 55
        Select Case slideIndex
            Case 1 To 33, 44 To 55
                For Each currentShape In ActivePresentation.Slides(slideIndex).Shapes.Placeholders
                    If currentShape.HasTable Then
                        If Not DeleteHighlightedColumnsFromTable(currentShape.Table, highlightColor) Then Exit Sub
                    End If
                Next currentShape
        End Select
    Next slideIndex
   
    MsgBox "Completed!", vbExclamation
   
End Sub

Private Function DeleteHighlightedColumnsFromTable(ByVal targetTable As Table, ByVal highlightColor As Long) As Boolean

    Dim lastRow As Long
    Dim lastColumn As Long
    Dim columnIndex As Long
    Dim response As VbMsgBoxResult
    Dim slideNameAndColumnHeader As String
   
    With targetTable
        lastRow = .Rows.Count
        lastColumn = .Columns.Count
        For columnIndex = lastColumn To 1 Step -1
            If .Cell(lastRow, columnIndex).Shape.Fill.ForeColor.RGB = highlightColor Then
                .Parent.Parent.Select 'go to slide (optional)
                slideNameAndColumnHeader = .Parent.Parent.Name & " - " & .Cell(1, columnIndex).Shape.TextFrame2.TextRange.Text
                response = MsgBox("Are you sure you want to delete this column?", vbQuestion + vbYesNoCancel, slideNameAndColumnHeader)
                If response = vbCancel Then
                    DeleteHighlightedColumnsFromTable = False
                    Exit Function
                End If
                If response = vbYes Then
                    .Columns(columnIndex).Delete
                End If
            End If
        Next columnIndex
    End With
   
    DeleteHighlightedColumnsFromTable = True
   
End Function

Hope this helps!
Loved it!!!

Thanks you, So much Sir for your time and hard work on this :):)

Regards
Sanjeev
 
Upvote 0

Forum statistics

Threads
1,223,239
Messages
6,170,947
Members
452,368
Latest member
jayp2104

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