ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   A variable in VB (https://www.excelbanter.com/excel-programming/306917-variable-vbulletin.html)

ecando

A variable in VB
 
Hi,
I am new VB coding and want to do the following:

Range("B12").Value = myVariable

But ... where the cloumn heading is a variable also



I have been able to write it as:

cellRef = columnVar + "12"
Range("cellRef").Value = myVariable

Is it possible to parse the line 'Range("B12").Value = myVariable' so
that B is a variable also??
:confused:
Thanks for any ideas help


---
Message posted from http://www.ExcelForum.com/


Chip Pearson

A variable in VB
 
Try something like

Dim R As Long
Dim C As String
R = 12
C = "B"
Cells(R,C).Value = myVariable


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"ecando " wrote in
message ...
Hi,
I am new VB coding and want to do the following:

Range("B12").Value = myVariable

But ... where the cloumn heading is a variable also



I have been able to write it as:

cellRef = columnVar + "12"
Range("cellRef").Value = myVariable

Is it possible to parse the line 'Range("B12").Value =

myVariable' so
that B is a variable also??
:confused:
Thanks for any ideas help


---
Message posted from http://www.ExcelForum.com/




Ron de Bruin

A variable in VB
 
Try this

columnVar = "B"
cellRef = columnVar & 12
'Range(cellRef).Value = myVariable
Range(cellRef).Select


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ecando " wrote in message ...
Hi,
I am new VB coding and want to do the following:

Range("B12").Value = myVariable

But ... where the cloumn heading is a variable also



I have been able to write it as:

cellRef = columnVar + "12"
Range("cellRef").Value = myVariable

Is it possible to parse the line 'Range("B12").Value = myVariable' so
that B is a variable also??
:confused:
Thanks for any ideas help


---
Message posted from http://www.ExcelForum.com/




ecando[_2_]

A variable in VB
 
Chip Pearson wrote:
[b]Try something like

Dim R As Long
Dim C As String
R = 12
C = "B"
Cells(R,C).Value = myVariable


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


EXACTLY what I need ...
Thanks Chip
:)


---
Message posted from http://www.ExcelForum.com/



All times are GMT +1. The time now is 03:25 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com