Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a question, lets say that in column A, row 1, I have P18 and in the
same column, row 2, I have P18A, in row 3, P18B, can I continue down with out retyping, when I tried to do this it changes the number to P19 but is does not change the letter to C, I want it to change the letter to A,B,C but to leave the original numbering the same, can this be done! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In the second row enter:
="P18" & CHAR(65-2+ROW()) and copy down -- Gary''s Student - gsnu200738 "Raquel" wrote: I have a question, lets say that in column A, row 1, I have P18 and in the same column, row 2, I have P18A, in row 3, P18B, can I continue down with out retyping, when I tried to do this it changes the number to P19 but is does not change the letter to C, I want it to change the letter to A,B,C but to leave the original numbering the same, can this be done! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
that's not what I wanted, all I want is to avoid typing P18A, P18B, P18C and
so on, if I copy this sequence down it gives me P18A, P19B, P20C, and I don't want the 18 to change, I wanted the letter to change, your formula give me P18 a, P18AB and so on, which is really helpful, but not for this one... Have any other idea....tip! "Gary''s Student" wrote: In the second row enter: ="P18" & CHAR(65-2+ROW()) and copy down -- Gary''s Student - gsnu200738 "Raquel" wrote: I have a question, lets say that in column A, row 1, I have P18 and in the same column, row 2, I have P18A, in row 3, P18B, can I continue down with out retyping, when I tried to do this it changes the number to P19 but is does not change the letter to C, I want it to change the letter to A,B,C but to leave the original numbering the same, can this be done! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
="P18"&CHAR(63+ROW(A2)) in A2, and copy down
-- David Biddulph "Raquel" wrote in message ... I have a question, lets say that in column A, row 1, I have P18 and in the same column, row 2, I have P18A, in row 3, P18B, can I continue down with out retyping, when I tried to do this it changes the number to P19 but is does not change the letter to C, I want it to change the letter to A,B,C but to leave the original numbering the same, can this be done! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One more if you want to go past the letter Z
="P18" & SUBSTITUTE(ADDRESS(1,ROW(),4),"1","") Entered in A1 and copied to A256 Don't ask me how it works please. Gord Dibben MS Excel MVP On Thu, 23 Aug 2007 09:26:02 -0700, Raquel wrote: I have a question, lets say that in column A, row 1, I have P18 and in the same column, row 2, I have P18A, in row 3, P18B, can I continue down with out retyping, when I tried to do this it changes the number to P19 but is does not change the letter to C, I want it to change the letter to A,B,C but to leave the original numbering the same, can this be done! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
change letter into a number | Excel Discussion (Misc queries) | |||
How do I change a letter to a number in an excel spreadsheet? | Excel Worksheet Functions | |||
What will cause column headings to change from letter to number? | Excel Discussion (Misc queries) | |||
change headers from letter to number/number to letter | Excel Worksheet Functions | |||
How do I change column label from number to letter? | Excel Discussion (Misc queries) |