the following copies a range from one worksheet to another. it copies empy
cells, but does that make any difference?
worksheets("sheet2").Range("B1:B300").Value =
worksheets("sheet1").Range("B1:B300").Value
"Don Guillett" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> You also need to FULLY state your question the FIRST time.
>
> --
> Don Guillett
> Microsoft MVP Excel
> SalesAid Software
> (E-Mail Removed)
> "Jeff Gross" <(E-Mail Removed)> wrote in message
> news:2276638B-CCF1-40D1-8ADF-(E-Mail Removed)...
>>I also need this code to cycle through all cells down to row 300.
>>
>> "Jeff Gross" wrote:
>>
>>> Sorry but I didn't make myself clear. I am copying from a different
>>> worksheet into A2 if there is any data in B2.
>>>
>>> Jeff.
>>>
>>> "Patrick Molloy" wrote:
>>>
>>> > if Range("B2").Value <>"" then Range("A2")=Range("B2").Value
>>> >
>>> > "Jeff Gross" <(E-Mail Removed)> wrote in message
>>> > news:E73B11C9-0AA9-4C05-B5D2-(E-Mail Removed)...
>>> > > I need to copy text into a cell "A2" if there is any data in "B2".
>>> > > B2
>>> > > contains a formula but will appear blank if its source has nothing.
>>> > >
>>> > > Any ideas?
>>> > >
>>> > > Jeff
>>> >
>>> >
>