Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a quick way to determine the coulmn number, Shortcut?
ie, Column "G" is column 7. Thanks, |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=column(g1)
????? Or just put =column() in any cell in column G. SpaceCamel wrote: Is there a quick way to determine the coulmn number, Shortcut? ie, Column "G" is column 7. Thanks, -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can have the column letters appear as numbers.
Tools--options--general--R1C1 reference style. You can also populate the first row of cells with numbers, A1=1, B1, =2, etc., and freeze that first row. To do this select teh 2nd row, then Window--Freeze Panes. Finally, you can use the COLUMN function =COLUMN(D1) returns 4, etc. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "SpaceCamel" wrote: Is there a quick way to determine the coulmn number, Shortcut? ie, Column "G" is column 7. Thanks, |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for the suggestions.
I don't want to modify the worksheet. I was just hoping for a tooltip or statusbar display for quick temporary reference. "Dave F" wrote: You can have the column letters appear as numbers. Tools--options--general--R1C1 reference style. You can also populate the first row of cells with numbers, A1=1, B1, =2, etc., and freeze that first row. To do this select teh 2nd row, then Window--Freeze Panes. Finally, you can use the COLUMN function =COLUMN(D1) returns 4, etc. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "SpaceCamel" wrote: Is there a quick way to determine the coulmn number, Shortcut? ie, Column "G" is column 7. Thanks, |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I was just hoping for a tooltip or statusbar display
One idea...While working on a particular sheet, you could place this code on that particular sheet module in vba. It will display the R1C1 address in the status bar. When you are finished working on the sheet, you could remove it. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.StatusBar = Target.Address(True, True, xlR1C1) End Sub -- HTH :) Dana DeLouis Windows XP & Office 2003 "SpaceCamel" wrote in message ... Thanks for the suggestions. I don't want to modify the worksheet. I was just hoping for a tooltip or statusbar display for quick temporary reference. "Dave F" wrote: You can have the column letters appear as numbers. Tools--options--general--R1C1 reference style. You can also populate the first row of cells with numbers, A1=1, B1, =2, etc., and freeze that first row. To do this select teh 2nd row, then Window--Freeze Panes. Finally, you can use the COLUMN function =COLUMN(D1) returns 4, etc. Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "SpaceCamel" wrote: Is there a quick way to determine the coulmn number, Shortcut? ie, Column "G" is column 7. Thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to get the column number from the corresponding column name denoting initial..??? | Excel Worksheet Functions | |||
Finding the closest number in column A and take the value in column B | Excel Worksheet Functions | |||
Display missing Part Number if Column A does not match column B | Excel Worksheet Functions | |||
how i write a number on a column A and see that number on letters. | Excel Worksheet Functions | |||
Auto number w/ different letter-number combos in same column | Excel Worksheet Functions |