Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("C33").Select
is there a way to may range a variable ? Sparky |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
.... may range ...?
-- --- HTH Bob (change the xxxx to gmail if mailing direct) "Sparky AKA_Sparkticus" wrote in message k... Range("C33").Select is there a way to may range a variable ? Sparky |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Lots of ways. Detail?
-- Don Guillett SalesAid Software "Sparky AKA_Sparkticus" wrote in message k... Range("C33").Select is there a way to may range a variable ? Sparky |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Don Guillett wrote:
Lots of ways. Detail? Range("C33").Select is there a way to may range a variable ? Sparky I have cellthat i type qty number in and from that i populate from c33 with detail of a product based on that qty so what i want to do is lg 17 qty =2 and lg 20 qty = 0 the c33 & c34 will read LG 17 but if lg 17 qty =1 and lg 20 qty = 2 then cells c33 wil read lg 17 cell c34 will rad lg 20 cell c35 will rad lg 20 sparky |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In its simplest form, you could do something like
Dim Addr As String Addr = "C33" Range(Addr).Select -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com (email address is on the web site) "Sparky AKA_Sparkticus" wrote in message k... Range("C33").Select is there a way to may range a variable ? Sparky |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
select range and put range address in variable | Excel Programming | |||
Macro to copy a specified range to a variable range | Excel Programming | |||
Using a variable in a range | Excel Programming | |||
setting a range variable equal to the value of a string variable | Excel Programming | |||
Problem trying to us a range variable as an array variable | Excel Programming |