Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 45
Default Looking up data in different sheet

Hi Group,
Maybe another dumb question from a noob, but I would like to be
able to enter data from selected cells in another worksheet when I
enter on sheet1....I know I could go to the second worksheet, select
the cell where I want the data entered and insert =, go back to sheet
1 select the cell whose data I want entered, and press enter, etc,
etc.,....the question is: how would you go about writing a function,
or VBA, that would do it automatically as you type in data on sheet1,
without having to go to sheet2 and doing the = everytime??....as it is
now, I can only do one line at a time, then repeat the = process each
time to change the cell reference, which is a very slow process...I
know the answer is probably very simple, but I don't have the
knowledge or expertise to make it so...any help would be very greatly
appreciated, as it always is...
Ken

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 45
Default Looking up data in different sheet

On Oct 16, 10:06 am, "Don Guillett" wrote:
Right click sheet tabview codeinsert this. You may want to restrict to a
certain range or column.

Private Sub Worksheet_Change(ByVal Target As Range)
Set ds = Sheets("sheet7")
lr = ds.Cells(Rows.Count, "a").End(xlUp).Row + 1
Target.Copy ds.Cells(lr, "a")
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Ken" wrote in message

oups.com...



Hi Group,
Maybe another dumb question from a noob, but I would like to be
able to enter data from selected cells in another worksheet when I
enter on sheet1....I know I could go to the second worksheet, select
the cell where I want the data entered and insert =, go back to sheet
1 select the cell whose data I want entered, and press enter, etc,
etc.,....the question is: how would you go about writing a function,
or VBA, that would do it automatically as you type in data on sheet1,
without having to go to sheet2 and doing the = everytime??....as it is
now, I can only do one line at a time, then repeat the = process each
time to change the cell reference, which is a very slow process...I
know the answer is probably very simple, but I don't have the
knowledge or expertise to make it so...any help would be very greatly
appreciated, as it always is...
Ken- Hide quoted text -


- Show quoted text -


Hi Don,
Thank you for your quick response! You are right, I do need to
restrict to certain cols and ranges....what I have is a sheet named
JobLogEntry, columns A thru T, with data entered in all cells on a
particular line....I need to copy the data from Col A (selected line
cell), to a sheet named Shipping, cell B:3; Col H, JobLogEntry,
selected cell, to cell B:5, Shipping, etc, etc with only a total of 6
entries from the 20 entries on JobLogEntry to Shipping sheet...and
just by selecting a line that has already been filled out, the info
from that line would appear on Shipping sheet....would that be too
much to try to do?? Like I said, I do ask some dumb questions
sometimes! Thanks for any help because I do appreciate it!
Ken

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Looking up data in different sheet

Pls top post as it is easier, for me, to read.
Certainly doable if I understood what you want. Send a workbook to the
address below, if desired.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ken" wrote in message
oups.com...
On Oct 16, 10:06 am, "Don Guillett" wrote:
Right click sheet tabview codeinsert this. You may want to restrict to
a
certain range or column.

Private Sub Worksheet_Change(ByVal Target As Range)
Set ds = Sheets("sheet7")
lr = ds.Cells(Rows.Count, "a").End(xlUp).Row + 1
Target.Copy ds.Cells(lr, "a")
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Ken" wrote in message

oups.com...



Hi Group,
Maybe another dumb question from a noob, but I would like to be
able to enter data from selected cells in another worksheet when I
enter on sheet1....I know I could go to the second worksheet, select
the cell where I want the data entered and insert =, go back to sheet
1 select the cell whose data I want entered, and press enter, etc,
etc.,....the question is: how would you go about writing a function,
or VBA, that would do it automatically as you type in data on sheet1,
without having to go to sheet2 and doing the = everytime??....as it is
now, I can only do one line at a time, then repeat the = process each
time to change the cell reference, which is a very slow process...I
know the answer is probably very simple, but I don't have the
knowledge or expertise to make it so...any help would be very greatly
appreciated, as it always is...
Ken- Hide quoted text -


- Show quoted text -


Hi Don,
Thank you for your quick response! You are right, I do need to
restrict to certain cols and ranges....what I have is a sheet named
JobLogEntry, columns A thru T, with data entered in all cells on a
particular line....I need to copy the data from Col A (selected line
cell), to a sheet named Shipping, cell B:3; Col H, JobLogEntry,
selected cell, to cell B:5, Shipping, etc, etc with only a total of 6
entries from the 20 entries on JobLogEntry to Shipping sheet...and
just by selecting a line that has already been filled out, the info
from that line would appear on Shipping sheet....would that be too
much to try to do?? Like I said, I do ask some dumb questions
sometimes! Thanks for any help because I do appreciate it!
Ken


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 45
Default Looking up data in different sheet

Thanks, Don....I'll have to wait until I get home today to send a
file.....
Ken

On Oct 16, 11:00 am, "Don Guillett" wrote:
Pls top post as it is easier, for me, to read.
Certainly doable if I understood what you want. Send a workbook to the
address below, if desired.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Ken" wrote in message

oups.com...



On Oct 16, 10:06 am, "Don Guillett" wrote:
Right click sheet tabview codeinsert this. You may want to restrict to
a
certain range or column.


Private Sub Worksheet_Change(ByVal Target As Range)
Set ds = Sheets("sheet7")
lr = ds.Cells(Rows.Count, "a").End(xlUp).Row + 1
Target.Copy ds.Cells(lr, "a")
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Ken" wrote in message


groups.com...


Hi Group,
Maybe another dumb question from a noob, but I would like to be
able to enter data from selected cells in another worksheet when I
enter on sheet1....I know I could go to the second worksheet, select
the cell where I want the data entered and insert =, go back to sheet
1 select the cell whose data I want entered, and press enter, etc,
etc.,....the question is: how would you go about writing a function,
or VBA, that would do it automatically as you type in data on sheet1,
without having to go to sheet2 and doing the = everytime??....as it is
now, I can only do one line at a time, then repeat the = process each
time to change the cell reference, which is a very slow process...I
know the answer is probably very simple, but I don't have the
knowledge or expertise to make it so...any help would be very greatly
appreciated, as it always is...
Ken- Hide quoted text -


- Show quoted text -


Hi Don,
Thank you for your quick response! You are right, I do need to
restrict to certain cols and ranges....what I have is a sheet named
JobLogEntry, columns A thru T, with data entered in all cells on a
particular line....I need to copy the data from Col A (selected line
cell), to a sheet named Shipping, cell B:3; Col H, JobLogEntry,
selected cell, to cell B:5, Shipping, etc, etc with only a total of 6
entries from the 20 entries on JobLogEntry to Shipping sheet...and
just by selecting a line that has already been filled out, the info
from that line would appear on Shipping sheet....would that be too
much to try to do?? Like I said, I do ask some dumb questions
sometimes! Thanks for any help because I do appreciate it!
Ken- Hide quoted text -


- Show quoted text -



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Move data to new sheet - rename sheet based on criteria ? [email protected] Excel Discussion (Misc queries) 7 May 16th 07 10:22 PM
How can i copy data from a tabbed working sheet to a summary sheet StephenF Excel Discussion (Misc queries) 1 March 15th 07 03:40 PM
move rows of data seperated in a sheet to a sheet with no separat Lynn Excel Worksheet Functions 5 December 22nd 06 03:18 AM
create a formula in one sheet that would read data from separate sheet automatically QD Excel Discussion (Misc queries) 0 December 8th 06 04:17 AM
pull data from sheet two, then fill in the data to sheet one (part Jim Excel Worksheet Functions 3 December 11th 04 04:51 AM


All times are GMT +1. The time now is 04:34 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"