# Write the main headings for the worksheet AP $worksheet->freeze_panes(1); # Freeze the first row $worksheet->write('A1', 'Login', $heading); $worksheet->write('B1', 'UserName', $heading); $worksheet->write('C1', 'Group', $heading); $worksheet->write('D1', 'Phone', $heading); $worksheet->write('E1', 'City', $heading); $worksheet->write('F1', 'State', $heading); #Write the server headings for the worksheet AP $worksheet->write('G1', 'LDAP', $heading); $worksheet->write('H1', 'Dopey', $heading); $worksheet->write('I1', 'Sleepy', $heading); $worksheet->write('J1', 'Sneezy', $heading); .......