Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i am a novice in VBA programming. I am looking to call a variable
within a string. for example a = "E13" (Cell reference) Range("a: L30").select (Giving me error because variable a cannot be called in within the Range) I intend to select cells in the range E 13 to L 30. Any way to make this work? Basically the starting cell of this range is dynamic and I want to select that range. Thanks, Rachit |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Rachit,
range(a & ":l30").Select -- Kind regards, Niek Otten wrote in message oups.com... |i am a novice in VBA programming. I am looking to call a variable | within a string. | | for example | | a = "E13" (Cell reference) | Range("a: L30").select (Giving me error because variable a cannot | be called in within the Range) | | I intend to select cells in the range E 13 to L 30. Any way to make | this work? Basically the starting cell of this range is dynamic and I | want to select that range. | | Thanks, | Rachit | |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
thanks a lot... also another question..
if i know that a cell row is i and cell column is j (i and j are variables), how do i get it in the regular cell address (Alphabet-number) format..like i=5, j= 13, how do i get E 13 and assign it as a = "e13" thanks again! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Cells(i,j).Value = "a"
BTW if i is row and =5, and j is column and 13, then you are talking M5 not E13. -- HTH Bob Phillips (remove xxx from email address if mailing direct) wrote in message ups.com... thanks a lot... also another question.. if i know that a cell row is i and cell column is j (i and j are variables), how do i get it in the regular cell address (Alphabet-number) format..like i=5, j= 13, how do i get E 13 and assign it as a = "e13" thanks again! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i think i have not put it correctly. I do not want to assign "a" to
E13, rather i want to assign the string E13 which is obtained through i=13, j=5 (i and j are variables) to a variable called 'a'. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Well in that case you want Niek's alternative solution, but you will still
get M5 with those variable values, not E13. If i is row it should be 13 not 5! -- HTH Bob Phillips (remove xxx from email address if mailing direct) wrote in message oups.com... i think i have not put it correctly. I do not want to assign "a" to E13, rather i want to assign the string E13 which is obtained through i=13, j=5 (i and j are variables) to a variable called 'a'. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Rachit,
cells(i,j).address(false,false) Please start a new thread for a new question -- Kind regards, Niek Otten wrote in message ups.com... | thanks a lot... also another question.. | | if i know that a cell row is i and cell column is j (i and j are | variables), how do i get it in the regular cell address | (Alphabet-number) format..like i=5, j= 13, how do i get E 13 | and assign it as | | a = "e13" | | thanks again! | |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How can I use Excel to achieve the following
1) I wish to split a concatenated string into a column of separate characters ThisIsText should become.. t h i s i s t e x t. 2) After this I wish to display a predefined row beside every character t xyz x1w 234.1w h sdf w21 12.5s i wer we2 123.e .. .. .. Thank You Natarajan Ganesan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Aling multiple sets of data by header column | Excel Discussion (Misc queries) | |||
String parsing with variable lenght strings | Excel Worksheet Functions | |||
Variable in string | Excel Discussion (Misc queries) | |||
Inserting Filtered RC cell information into other worksheets | Excel Discussion (Misc queries) | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) |