Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to be able to reference cells by the row number an column number
rather than using the column letter. I am contatenating strings to make a formula where I increment the column. I have tried r1c1 notation and this doesn't seem to work for me. Is there a function like +cellvalue(1,1) that will return the value in a1? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If cells E1 and E2 hold numbers such as 1,2,3 or then
=INDIRECT(CHOOSE(E1,"A","B","C","D")&E2) will point to cells such as A1, C4, etc You will need to expand the CHOOSE part to get to less past column D This will work up to column Z =INDIRECT(CHAR(E1+96)&E2) best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "mcambrose" wrote in message ... I want to be able to reference cells by the row number an column number rather than using the column letter. I am contatenating strings to make a formula where I increment the column. I have tried r1c1 notation and this doesn't seem to work for me. Is there a function like +cellvalue(1,1) that will return the value in a1? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The offset function can do that for you. John Walk also uses the Match
function to determine column number - http://j-walk.com/ss/excel/usertips/tip020.htm. You might be able to modify that to handle your requirements. "mcambrose" wrote: I want to be able to reference cells by the row number an column number rather than using the column letter. I am contatenating strings to make a formula where I increment the column. I have tried r1c1 notation and this doesn't seem to work for me. Is there a function like +cellvalue(1,1) that will return the value in a1? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How:Add New Worksheet that copies the cell of the previous sheet | Excel Worksheet Functions | |||
Can I modify cell attributes (font,color etc.) based on function . | Excel Discussion (Misc queries) | |||
format cell based on results of vlookup function | Excel Worksheet Functions | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Help with function to add percentage to cell based on checkbox. | Excel Worksheet Functions |