i the need folowing sub to work in sequence because the second part of the sub relys on the on the 1st part to work correctly. any ideas
<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> New_Button_Click()<br><br> LastRowSL = Worksheets("Saw List").UsedRange.Rows.Count<br> <br> <br> <SPAN style="color:#00007F">If</SPAN> Range("A3").Value = "XO" <SPAN style="color:#00007F">Then</SPAN><br> Worksheets("Formulas").Range("A2:A10").Copy _<br> Destination:=Worksheets("Saw List").Range("B" & LastRowSL + 1)<br><br> LastCell = Worksheets("Saw List").Cells(Rows.Count, "C").End(xlUp).Row<br> Worksheets("Windows").Range("E2").Copy _<br> Destination:=Worksheets("Saw List").Range("C" & LastCell + 1 & ":C" & LastRowSL)<br> <br> <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br> <br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>
<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> New_Button_Click()<br><br> LastRowSL = Worksheets("Saw List").UsedRange.Rows.Count<br> <br> <br> <SPAN style="color:#00007F">If</SPAN> Range("A3").Value = "XO" <SPAN style="color:#00007F">Then</SPAN><br> Worksheets("Formulas").Range("A2:A10").Copy _<br> Destination:=Worksheets("Saw List").Range("B" & LastRowSL + 1)<br><br> LastCell = Worksheets("Saw List").Cells(Rows.Count, "C").End(xlUp).Row<br> Worksheets("Windows").Range("E2").Copy _<br> Destination:=Worksheets("Saw List").Range("C" & LastCell + 1 & ":C" & LastRowSL)<br> <br> <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br> <br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>