Hey everyone thanks for your help in advance, im trying to insert a new line below the active cell ive tried several attempts but i am getting error 1004. Some attempts are commented out. 
	
	
	
		
 
		Code:
	
	
	           wks6.Activate
                        With wks6
                            .Select
                           ' .Rows.AutoFit
                           ' .Columns.AutoFit
                            .Range("A:AO").Select
                          With Selection
                              .HorizontalAlignment = xlCenter
                              .VerticalAlignment = xlCenter
                              .WrapText = True
                              .Orientation = 0
                              .AddIndent = False
                              .IndentLevel = 0
                              .ShrinkToFit = False
                              .ReadingOrder = xlContext
                              .MergeCells = False
                          End With
                             '.Range("AB").EntireRow.Offset(1, 0).Insert
                             '.Range("AB").EntireRow.Insert shift:=xlDown
                             .Range("AB").Select
                              Selection.EntireRow.Insert Shift:=xlDown
                        End With