Send contents to another page

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

I'm trying to send the contents to another sheet without having to copy/paste
each time. Whenever something is entered into sheet 1 that row is sent to
sheet 2. I quess in the worksheet change event? Thanks in advance!!
 
"Send" means what?

Copy or Move?

The event code could do either.

To where would the data be "sent"?

To next empty row in sheet2 or overwrite the same row in sheet2 when data is
entered in a corresponding row on sheet1?


Gord Dibben MS Excel MVP
 
A worksheet change event sounds rather complicated. In Sheet2, why not just
put:

=Sheet1!a1

Regards,
Fred
 
Say I put RT-005 in sheet1 columnA cell a1 and I put a qty of 5 in sheet1
columnB cell b1. I want to be able to send those results to sheet2 starting
at row1 and each time something is added to sheet1 those results are sent to
sheet2 to the next row and so on
 
You sort of provided some more details<g>

"each time something is added to sheet1"..........where?

In row 1 again? Or row 2 then row 3 then row 4?

If the latter, in A1 of sheet2 enter =IF(Sheet1!A1="","",Sheet1!A1)

Copy across to B1

Select both of those cells and drag/copy down as far as you wish.

As you fill up columns A and B on sheet1 the results will be shown on sheet2

If all your data entering is going to be in Sheet1 A1 and B1 you will need VBA


Gord
 
Send or copy, either one, they are both the same. And yes it has to be
copied before it can be moved, else what are you moving? And what do you mean
by the event code. If I knew what is was and how to use it I wouldn't meed
any help with it. And as to where the data is being sent is on my post, sent
to sheet2 to the next available row!
 
"Send or copy, either one, they are both the same"

To quote from another post...."that is bullcrap".

You don't have to copy to send something.

Also from your original post..............

"I quess in the worksheet change event?"

Now you state
And what do you mean by the event code. If I knew what is was and how to use it I wouldn't meed
any help with it.

I won't be answering any more of your questions per your request.

Lotsa luck.

I'm sure you'll get good advice once someone knows the answer to

"each time something is added to sheet1"..........where?

In row 1 again? Or row 2 then row 3 then row 4?


Gord
 
Explain, whats the difference from copy to on sheet rather than send to one
sheet, if both does the same then either one? Send or copy?
 
A worksheet_change event can do that using copy/paste or .value = .value
but as Gord says, no mind reading here so you have to tell us what you want.
You do NOT do yourself a favor by arguing with people like Gord who is
trying to help you. And it is considered very impolite to start another
thread on the same subject. Do you really think that does any good. If your
attitude persists you will soon find no help around here.
 
I'm very aware of that, but what I've stated is very clear and I have my
answer. I'm aware that I started another thread, BY MISTAKE, I meant to add
it to my previous one. WHAT DOES ANOY ME, that you seem to be adding just as
much treads with your comments. So please everyone! Please do not reply with
an answer or any more of your comments. Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top