ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How to paste variable value onto a Cell? (https://www.excelbanter.com/excel-programming/272987-how-paste-variable-value-onto-cell.html)

Milind

How to paste variable value onto a Cell?
 
Through a code, I have got a variable some value. How do I paste it to a
Cell ? Like,

For Each c In Worksheets("Sheet1").Range("A2:A5").Cells
valie = c.Value
If c.Value = 22381 Then
wala = c.Offset(0, 5).Value
If wala = "pills" Then
milla = c.Offset(0, 2).Value

counter = 0
ChDir "C:\milinda"
Workbooks.Open FileName:="C:\milinda\sample-1.xls"
Range("E" & counter + 1).Select
ActiveSheet.Paste = milla

I need to paste the value of milla in the said cell. What is the command ?

Milind


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.504 / Virus Database: 302 - Release Date: 7/24/2003



Bob Phillips[_5_]

How to paste variable value onto a Cell?
 
Milind,

You don't paste a variable, you just assign it, like so

Range("E" & counter + 1).Value = milla


--

HTH

Bob Phillips

"Milind" wrote in message
...
Through a code, I have got a variable some value. How do I paste it to a
Cell ? Like,

For Each c In Worksheets("Sheet1").Range("A2:A5").Cells
valie = c.Value
If c.Value = 22381 Then
wala = c.Offset(0, 5).Value
If wala = "pills" Then
milla = c.Offset(0, 2).Value

counter = 0
ChDir "C:\milinda"
Workbooks.Open FileName:="C:\milinda\sample-1.xls"
Range("E" & counter + 1).Select
ActiveSheet.Paste = milla

I need to paste the value of milla in the said cell. What is the command ?

Milind


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.504 / Virus Database: 302 - Release Date: 7/24/2003






All times are GMT +1. The time now is 11:02 AM.

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