problem cells syntax
RH

Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » Problem with Cells Syntax

Problem with Cells Syntax

resolvedResolved · Medium Priority · Version 2016

Diane has attended:
Excel VBA Introduction course
Excel VBA Intermediate course
Excel VBA Advanced course

Problem with Cells Syntax

I have written some code which executes within a loop (the loop is fine), I wanted to refine the code to use the cells object which I understand to be the better method of coding but I get a runtime error.

This is the code which will not work

Range(Cells(iCopy, 2)).Offset(0, 2).Copy
'Target.Range(Cells(iCopy, 1)).PasteSpecial xlPasteValues


This is the code that does work

Range("b" & iCopy).Offset(0, 2).Copy
Target.Range("a" & iCopy).PasteSpecial xlPasteValues 'project name


CAn you please advise me of the correct syntax. Thanks

RE: Problem with Cells Syntax

Hi Diane,

Thank you for the forum question.

Replace:

Range(Cells(iCopy, 2)).Offset(0, 2).Copy

With:

Cells(iCopy,4).copy

The cells object is not valid inside the range object and I cannot see you need the Offset.

The target object must come from another part of the code, you haven't put in the question.

Without all the code I will not be able to find out if

Target.Cells(icopy, 1).PasteSpecial xlPasteValues

cna replace:


'Target.Range(Cells(iCopy, 1)).PasteSpecial xlPasteValues



Kind regards

Jens Bonde
Microsoft Office Specialist Trainer

Tel: 0207 987 3777
STL - https://www.stl-training.co.uk
98%+ recommend us

London's leader with UK wide delivery in Microsoft Office training and management training to global brands, FTSE 100, SME's and the public sector

 

Training courses

 

Training information:

Welcome. Please choose your application (eg. Excel) and then post your question.

Our Microsoft Qualified trainers will then respond within 24 hours (working days).

Frequently Asked Questions
What does 'Resolved' mean?

Any suggestions, questions or comments? Please post in the Improve the forum thread.


 

Excel tip:

Using an equal (=) sign that isn't part of a formula

Before you type the equal sign, type an apostrophe: '
Then type your equal sign: = (and anything else you want to add after your equal sign)
Press ENTER.

(the apostraphe will disappear

View all Excel hints and tips


Server loaded in 0.06 secs.