[mso] Re: Changing Row and Column Labels - Excel 2003
- From: "Michele Wong" <balboagrad@xxxxxxxxx>
- To: mso@xxxxxxxxxxxxx
- Date: Fri, 28 Jul 2006 08:32:19 -0700
Thanks, Hutch. I'll pass this on to the client.
Michele
On 7/27/06, Thomas Hutchins <hutch99999@xxxxxxxxx> wrote:
>
> As far as I know, you cannot relabel the rows & columns in Excel. However,
> as a workaround you can put whatever you want to use for column heading in
> row 1 and whatever you want for row headings in column A. Then you can hide
> the normal row & column headings by selecting Tools >> Options >> View, then
> unchecking the "Row & column headers" option. Finally, put the cursor in
> cell B2, then select Window >> Freeze Panes.
>
> You can automate this and make it specific to a particular worksheet by
> adding event logic as follows to the code module for that sheet:
>
> Private Sub Worksheet_Activate()
> Range("B2").Select
> ActiveWindow.FreezePanes = True
> ActiveWindow.DisplayHeadings = False
> End Sub
>
> Private Sub Worksheet_Deactivate()
> ActiveWindow.DisplayHeadings = True
> End Sub
> Hope this helps,
>
> Hutch
>
> Michele Wong <balboagrad@xxxxxxxxx> wrote:
> Does anyone know if the A, B, C, etc, 1, 2, 3 etc labels on columns and
> rows
> can be changed to anything else? I know you can set them to R1, C1, but a
> client wants to substitute labels of items he uses.
> --
> Thanks,
> Michele Wong
> Reliable Cyber Solutions, LLC
> http://www.reliablecyber.com
>
>
*************************************************************
You are receiving this mail because you subscribed to mso@xxxxxxxxxxxxx or
MicrosoftOffice@xxxxxxxxxxxxxxxx
To send mail to the group, simply address it to mso@xxxxxxxxxxxxx
To Unsubscribe from this group, visit the group's homepage and use the dropdown
menu at the top. This will allow you to unsubscribe your email address or
change your email settings to digest or vacation (no mail).
http://www.freelists.org/webpage/mso
To be able to use the files section for sharing files with the group, send a
request to mso-moderators@xxxxxxxxxxxxx and you will be sent an invitation with
instructions. Once you are a member of the files group, you can go here to
upload/download files:
http://www.smartgroups.com/vault/msofiles
If you are using Outlook and you see a lot of unnecessary code in your email
messages, read these instructions that explain why and how to fix it:
http://personal-computer-tutor.com/abc3/v28/greg28.htm
*************************************************************
- References:
- [mso] Changing Row and Column Labels - Excel 2003
- From: Michele Wong
- [mso] Re: Changing Row and Column Labels - Excel 2003
- From: Thomas Hutchins
Other related posts:
- » [mso] Changing Row and Column Labels - Excel 2003
- » [mso] Re: Changing Row and Column Labels - Excel 2003
- » [mso] Re: Changing Row and Column Labels - Excel 2003
- [mso] Changing Row and Column Labels - Excel 2003
- From: Michele Wong
- [mso] Re: Changing Row and Column Labels - Excel 2003
- From: Thomas Hutchins