<> "" Then
            With Range(Cells(i, 3), Cells(i, 5))
                .Interior.Color = RGB(255, 242, 204)
                .Font.Color = RGB(0, 0, 0)
                .Font.Bold = True
                With .Borders(xlEdgeTop)
                    .LineStyle = xlDash
                    .Color = RGB(191, 191, 191)
                End With
                With .Borders(xlEdgeBottom)
                    .LineStyle = xlDash
                    .Color = RGB(191, 191, 191)
                End With
            End With
        End If
        
        If Cells(i, 4) <> "" Then
            With Range(Cells(i, 4), Cells(i, 5))
                .Interior.Color = RGB(255, 242, 204)
                .Font.Color = RGB(0, 0, 0)
                .Font.Bold = True
                With .Borders(xlEdgeTop)
                    .LineStyle = xlDash
                    .Color = RGB(191, 191, 191)
                End With
                With .Borders(xlEdgeBottom)
                    .LineStyle = xlDash
                    .Color = RGB(191, 191, 191)
                End With
            End With
        End If
        
        If Cells(i, 5) <> "" Then
            With Range(Cells(i, 5), Cells(i, 5))
                With .Borders(xlEdgeTop)
                    .LineStyle = xlDash
                    .Color = RGB(128, 128, 128)
                End With
                With .Borders(xlEdgeBottom)
                    .LineStyle = xlDash
                    .Color = RGB(128, 128, 128)
                End With
            End With
        End If
        
        If Cells(i, 1) = "" Then Rows(i).group
        i = i + 1
    Loop
    For i = row_start To row_end
        If Cells(i, 2) = "" And Cells(i, 3) = "" Then
            Rows(i).group
        End If
    Next
    
'    For i = row_start To row_end
'        If Cells(i, 3) = "" And Cells(i, 4) = "" Then
'            Rows(i).group
'        End If
'    Next
    
End Sub
    
     
      
 
       
 
      