Hi Excel VB Experts,
I am having some difficulty on creating the right VB macro to work
Ok here is what I need to accomplish
Whenever I type any character from Column A the output will be reflected to sheet2 row number 1
There are two worksheets sheet1 and sheet2.
Under sheet1:
A B
1 dell
2 hp
3 maxtor
4 western
5 avaya
6 seagate
I want sheet2 to output it like this
A B C D E F
1 dell hp Maxtor western avaya seagate
2
3
4
5
6
So my problem is whenever I delete all the data from column A and re-enter apple, orange, mango
The output look like this
A B C D E F
1 apple orange mango western avaya seagate
2
3
4
5
6
What I want is to somehow append the data “NOT overwrite the data” and so on
e.g.
A B C D E F
1 dell hp Maxtor western avaya seagate
2 apple orange mango
3
4
5
6
here is the code
Note: by the way I need to highlight select all the data and run the macro script…Is there a way I can do this automatically without running the macro manually like whenever I enter a data in sheet1 A column the data will automatically transfer to Sheet2 and does append the data
Thanks
Bookmarks