I recorded the following macro:
Is there any way it can be shortened?
Code:
Sub Macro1()
Sheets.Add After:=Sheets(Sheets.Count)
Range("A1").Select
ActiveCell.FormulaR1C1 = "trid"
Range("B1").Select
ActiveCell.FormulaR1C1 = "button_class"
Range("C1").Select
ActiveCell.FormulaR1C1 = "button_number"
Range("D1").Select
ActiveCell.FormulaR1C1 = "button_type_"
Range("E1").Select
ActiveCell.FormulaR1C1 = "incoming_action"
Range("F1").Select
ActiveCell.FormulaR1C1 = "lac"
Range("G1").Select
ActiveCell.FormulaR1C1 = "key_sequence"
Range("H1").Select
ActiveCell.FormulaR1C1 = "personal_label"
Range("I1").Select
ActiveCell.FormulaR1C1 = "site_ID"
Range("J1").Select
ActiveCell.FormulaR1C1 = "ring_tone"
Range("K1").Select
ActiveCell.FormulaR1C1 = "surname"
Range("L1").Select
ActiveCell.FormulaR1C1 = "given_name"
Range("M1").Select
ActiveCell.FormulaR1C1 = "organization"
Range("N1").Select
ActiveCell.FormulaR1C1 = "dn"
Range("O1").Select
ActiveCell.FormulaR1C1 = "speed_dial_type"
Range("P1").Select
ActiveCell.FormulaR1C1 = "extended_label_tfe"
Range("Q1").Select
ActiveCell.FormulaR1C1 = "personal_lbl_utf8"
Range("R1").Select
ActiveCell.FormulaR1C1 = "button_lock_status"
Range("S1").Select
ActiveCell.FormulaR1C1 = "notes"
Range("T1").Select
ActiveCell.FormulaR1C1 = "extended_label_bc"
Range("U1").Select
ActiveCell.FormulaR1C1 = "display_scheme_id"
End Sub