Any Help with Intersect and trim. I'm stuck!!!

I would like to do these steps using code but I'm getting stuck on the intersect and trim portion
1. User selects 3 overlapping shapes and I want to intersect the front and back objects then delete the front (I know you have to change to false)
2. The final 2 shapes are trimmed with the shape in the front being delete.
Let me know if this is something you can do!!
Im stuck!!
    Dim s As Shape, sr As ShapeRange
    Dim zPlace As String, i As Long
    
    Set sr = ActiveSelectionRange
 
// I only used for loop to see if I could determine the order
  
    For i = 1 To sr.Count
        Set s = sr(i)
        zPlace = zPlace & " " & s.ZOrder 
    Next i
       
            MsgBox zPlace
        
       
   ' Set s = s2(s2ID).Intersect(s1(s1ID), False, True)
    
Parents Reply Children