Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Linking cells into empty cells in another worksheet

I want to link text cells from one worksheet into the next empty cell
in another worksheet. i.e I cannot paste link to cell? because it may
already be full with a previous link.

Put another way. I want to automatically produce a list of names and
values from several worksheets into another worksheet without
overiding the previous entry to that 2nd worksheet. I want to
automatically add that data to the next available empty row in the 2nd
worksheet.

How do I do it?

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default Linking cells into empty cells in another worksheet

Each time that you are ready to add the new entries from the several sheets
to your single sheet, how are you going to distinquish and copy only the new
entries?

"Bookworm" wrote:

I want to link text cells from one worksheet into the next empty cell
in another worksheet. i.e I cannot paste link to cell? because it may
already be full with a previous link.

Put another way. I want to automatically produce a list of names and
values from several worksheets into another worksheet without
overiding the previous entry to that 2nd worksheet. I want to
automatically add that data to the next available empty row in the 2nd
worksheet.

How do I do it?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Linking cells into empty cells in another worksheet

On 10 Aug, 11:52, JMay wrote:
Each time that you are ready to add the new entries from the several sheets
to your single sheet, how are you going to distinquish and copy only the new
entries?



I want it to automatically update the second worksheet when the value
(text in this case) is entered in another worksheet and enter is
pressed.

I want the linked Text to be added to the next available row of cells
in 2nd worksheet.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default Linking cells into empty cells in another worksheet

Here's what I came up with.. If you have 4 sheets (of the input type) paste
the below code into each of the sheets code modules. But first modify line 4
where I assumed your coloumns to be copied ran A to E << Chg to your desired
Col letter
and also lines 5 and 6 change "sheet4" to the name of your destination sheet.

Lastly, the Copy process takes place not as you press the enter key, but
instead
when you Double-Click the Row of the just entered record...

HTH,

Jim May

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Cancel = True
CurRow = ActiveCell.Row
Range("A" & CurRow & ":E" & CurRow).Copy
Worksheets("Sheet4").Activate
With Sheets("Sheet4")
lrow = .Range("A65536").End(xlUp).Row + 1
.Range("A" & lrow).PasteSpecial xlPasteValues
End With
Application.CutCopyMode = xlCopy
End Sub

"Bookworm" wrote:

On 10 Aug, 11:52, JMay wrote:
Each time that you are ready to add the new entries from the several sheets
to your single sheet, how are you going to distinquish and copy only the new
entries?



I want it to automatically update the second worksheet when the value
(text in this case) is entered in another worksheet and enter is
pressed.

I want the linked Text to be added to the next available row of cells
in 2nd worksheet.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Linking cells into empty cells in another worksheet

On 10 Aug, 15:46, JMay wrote:
Here's what I came up with.. If you have 4 sheets (of the input type) paste
the below code into each of the sheets code modules. But first modify line 4
where I assumed your coloumns to be copied ran A to E << Chg to your desired
Col letter
and also lines 5 and 6 change "sheet4" to the name of your destination sheet.

Lastly, the Copy process takes place not as you press the enter key, but
instead
when you Double-Click the Row of the just entered record...

HTH,

Jim May

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Cancel = True
CurRow = ActiveCell.Row
Range("A" & CurRow & ":E" & CurRow).Copy
Worksheets("Sheet4").Activate
With Sheets("Sheet4")
lrow = .Range("A65536").End(xlUp).Row + 1
.Range("A" & lrow).PasteSpecial xlPasteValues
End With
Application.CutCopyMode = xlCopy
End Sub

Thanks for suggestion Jim but I think the coding is a bit beyond me.
Is there a way I can do it using the Ecxel tools?




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default Linking cells into empty cells in another worksheet

Sorry bookworm, but that's about the best I can recommend.
additionally, as I look back I see an error on my code (missed before), but
the next to the last line:
Application.CutCopyMode = xlCopy

should read:

Application.CutCopyMode = False

Sorry,

Jim May

"Bookworm" wrote:

On 10 Aug, 15:46, JMay wrote:
Here's what I came up with.. If you have 4 sheets (of the input type) paste
the below code into each of the sheets code modules. But first modify line 4
where I assumed your coloumns to be copied ran A to E << Chg to your desired
Col letter
and also lines 5 and 6 change "sheet4" to the name of your destination sheet.

Lastly, the Copy process takes place not as you press the enter key, but
instead
when you Double-Click the Row of the just entered record...

HTH,

Jim May

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Cancel = True
CurRow = ActiveCell.Row
Range("A" & CurRow & ":E" & CurRow).Copy
Worksheets("Sheet4").Activate
With Sheets("Sheet4")
lrow = .Range("A65536").End(xlUp).Row + 1
.Range("A" & lrow).PasteSpecial xlPasteValues
End With
Application.CutCopyMode = xlCopy
End Sub

Thanks for suggestion Jim but I think the coding is a bit beyond me.
Is there a way I can do it using the Ecxel tools?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 205
Default Linking cells into empty cells in another worksheet

I was looking to do this very same thing. I have a tracking page for our
loan manager and 3 loan officers that list their outstanding loans and their
status. What I want to happen is whenever a loan officer changes something
in their report, I want it to update the manager's report. I've never used
codes before but I'm willing to give it a try. Where in the VBA code to you
place your additions. I actually found the script editor and I'm assuming
it's somewhere in there. I would be ever so thankful if you could help.

"JMay" wrote:

Here's what I came up with.. If you have 4 sheets (of the input type) paste
the below code into each of the sheets code modules. But first modify line 4
where I assumed your coloumns to be copied ran A to E << Chg to your desired
Col letter
and also lines 5 and 6 change "sheet4" to the name of your destination sheet.

Lastly, the Copy process takes place not as you press the enter key, but
instead
when you Double-Click the Row of the just entered record...

HTH,

Jim May

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Cancel = True
CurRow = ActiveCell.Row
Range("A" & CurRow & ":E" & CurRow).Copy
Worksheets("Sheet4").Activate
With Sheets("Sheet4")
lrow = .Range("A65536").End(xlUp).Row + 1
.Range("A" & lrow).PasteSpecial xlPasteValues
End With
Application.CutCopyMode = xlCopy
End Sub

"Bookworm" wrote:

On 10 Aug, 11:52, JMay wrote:
Each time that you are ready to add the new entries from the several sheets
to your single sheet, how are you going to distinquish and copy only the new
entries?



I want it to automatically update the second worksheet when the value
(text in this case) is entered in another worksheet and enter is
pressed.

I want the linked Text to be added to the next available row of cells
in 2nd worksheet.



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
Exporting a worksheet with blank/empty cells jjk98 Excel Discussion (Misc queries) 2 May 22nd 07 01:12 PM
Problem on linking different cells from other worksheet ? Eric Excel Worksheet Functions 3 August 8th 06 12:38 AM
Linking cells by name only to another worksheet.... Jkralick Excel Worksheet Functions 3 June 8th 06 02:01 AM
linking cells in one worksheet to cells in another worksheet NKirkland Excel Worksheet Functions 2 January 12th 06 03:46 PM
Linking incremental cells from another worksheet Aaron Daniels Excel Discussion (Misc queries) 2 November 18th 05 12:16 AM


All times are GMT +1. The time now is 04:07 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"