Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default copy data of two cells from Sheet 2 into one cell in Sheet 1

I have a workbook with multiple sheets, the first sheet is a summary sheet.
I'm trying to copy data from two separate cells in one sheet to one cell in
the summary sheet.

CLARIFICATION: From Sheet 2 I have data in cells K33 & K34. I need to have
the data from both of these cells automatically copy into cell Q28 on the
summary sheet.

DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn

So that cell Q28 will read N3/12;cldy;rn

Can someone please help me out with this... Thank you!

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default copy data of two cells from Sheet 2 into one cell in Sheet 1



"cahabbinga" wrote:

I have a workbook with multiple sheets, the first sheet is a summary sheet.
I'm trying to copy data from two separate cells in one sheet to one cell in
the summary sheet.

CLARIFICATION: From Sheet 2 I have data in cells K33 & K34. I need to have
the data from both of these cells automatically copy into cell Q28 on the
summary sheet.

DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn

So that cell Q28 will read N3/12;cldy;rn

Can someone please help me out with this... Thank you!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default copy data of two cells from Sheet 2 into one cell in Sheet 1

=CONCATENATE(Sheet1!K33,";",Sheet1!K34)

"cahabbinga" wrote:

I have a workbook with multiple sheets, the first sheet is a summary sheet.
I'm trying to copy data from two separate cells in one sheet to one cell in
the summary sheet.

CLARIFICATION: From Sheet 2 I have data in cells K33 & K34. I need to have
the data from both of these cells automatically copy into cell Q28 on the
summary sheet.

DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn

So that cell Q28 will read N3/12;cldy;rn

Can someone please help me out with this... Thank you!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default copy data of two cells from Sheet 2 into one cell in Sheet 1

I've tried this already... Sorry, but when I type the formula into the cell,
it remains as a formula??? It doesn't import the data as it should... This
was the same problem I was having to start with... I can't figure it out...
Any thoughts?? Could there be something wrong with the destination sheet
that the data won't import?

Also, I had to track this discussion group down... The email that was sent
to me did not work properly... When I clicked on the link " Read and rate
the response" all I got was a blank window???

Thanks again...

Cynthia

"KGEORGE" wrote:

=CONCATENATE(Sheet1!K33,";",Sheet1!K34)

"cahabbinga" wrote:

I have a workbook with multiple sheets, the first sheet is a summary sheet.
I'm trying to copy data from two separate cells in one sheet to one cell in
the summary sheet.

CLARIFICATION: From Sheet 2 I have data in cells K33 & K34. I need to have
the data from both of these cells automatically copy into cell Q28 on the
summary sheet.

DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn

So that cell Q28 will read N3/12;cldy;rn

Can someone please help me out with this... Thank you!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default copy data of two cells from Sheet 2 into one cell in Sheet 1

You've probably got the cell containing your formula formatted as text.
Format as General, then use F2, Enter.
--
David Biddulph

"cahabbinga" wrote in message
...
I've tried this already... Sorry, but when I type the formula into the
cell,
it remains as a formula??? It doesn't import the data as it should...
This
was the same problem I was having to start with... I can't figure it
out...
Any thoughts?? Could there be something wrong with the destination sheet
that the data won't import?

Also, I had to track this discussion group down... The email that was
sent
to me did not work properly... When I clicked on the link " Read and rate
the response" all I got was a blank window???

Thanks again...

Cynthia

"KGEORGE" wrote:

=CONCATENATE(Sheet1!K33,";",Sheet1!K34)

"cahabbinga" wrote:

I have a workbook with multiple sheets, the first sheet is a summary
sheet.
I'm trying to copy data from two separate cells in one sheet to one
cell in
the summary sheet.

CLARIFICATION: From Sheet 2 I have data in cells K33 & K34. I need to
have
the data from both of these cells automatically copy into cell Q28 on
the
summary sheet.

DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn

So that cell Q28 will read N3/12;cldy;rn

Can someone please help me out with this... Thank you!





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default copy data of two cells from Sheet 2 into one cell in Sheet 1

THAT WAS IT!! I knew you guys would know, thanks so much...

I do have one more issue I'd like help with. On the summary sheet, each row
inputs information from a different sheet in the work book. I have a
separate sheet for each day of the month -- 1 through 31. Each 'day' sheet
has the same info in it for that specific day of the month. I need for the
data input in the summary sheet, FOR EACH COLUMN, to input the same
information from each individual day sheet.
How do I copy the formula in decending cells so that it will CHANGE THE
SHEET REFERENCE, BUT KEEP THE SAME CELL REFERENCE?

EXAMPLE:
In Column A of the summary sheet, I need A4 to be
=CONCATENATE(Sheet1!K33,";",Sheet1!K34)

But in Column A, cell A5, I need for the formula to be
=CONCATENATE(Sheet2!K33,";",Sheet2!K34)

Column A, cell A6 -
=CONCATENATE(Sheet3!K33,";",Sheet3!K34)

excetera... excetera... excetera... :)

Thanks again!




"David Biddulph" wrote:

You've probably got the cell containing your formula formatted as text.
Format as General, then use F2, Enter.
--
David Biddulph

"cahabbinga" wrote in message
...
I've tried this already... Sorry, but when I type the formula into the
cell,
it remains as a formula??? It doesn't import the data as it should...
This
was the same problem I was having to start with... I can't figure it
out...
Any thoughts?? Could there be something wrong with the destination sheet
that the data won't import?

Also, I had to track this discussion group down... The email that was
sent
to me did not work properly... When I clicked on the link " Read and rate
the response" all I got was a blank window???

Thanks again...

Cynthia

"KGEORGE" wrote:

=CONCATENATE(Sheet1!K33,";",Sheet1!K34)

"cahabbinga" wrote:

I have a workbook with multiple sheets, the first sheet is a summary
sheet.
I'm trying to copy data from two separate cells in one sheet to one
cell in
the summary sheet.

CLARIFICATION: From Sheet 2 I have data in cells K33 & K34. I need to
have
the data from both of these cells automatically copy into cell Q28 on
the
summary sheet.

DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn

So that cell Q28 will read N3/12;cldy;rn

Can someone please help me out with this... Thank you!




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default copy data of two cells from Sheet 2 into one cell in Sheet 1

Try it like this in A4:

=INDIRECT("Sheet"&ROW(a1)&"!K33")&";"&INDIRECT("Sh eet"&ROW(A1)&"!K34")

and then just copy it down as required.

Hope this helps.

Pete

On Jan 30, 12:50*pm, cahabbinga
wrote:
THAT WAS IT!! *I knew you guys would know, thanks so much...

I do have one more issue I'd like help with. *On the summary sheet, each row
inputs information from a different sheet in the work book. *I have a
separate sheet for each day of the month -- 1 through 31. *Each 'day' sheet
has the same info in it for that specific day of the month. *I need for the
data input in the summary sheet, FOR EACH COLUMN, to input the same
information from each individual day sheet.
How do I copy the formula in decending cells so that it will CHANGE THE
SHEET REFERENCE, BUT KEEP THE SAME CELL REFERENCE?

EXAMPLE: *
In Column A of the summary sheet, I need A4 to be
=CONCATENATE(Sheet1!K33,";",Sheet1!K34)

But in Column A, cell A5, I need for the formula to be
=CONCATENATE(Sheet2!K33,";",Sheet2!K34)

Column A, cell A6 -
=CONCATENATE(Sheet3!K33,";",Sheet3!K34)

excetera... * excetera... * excetera... * :)

Thanks again!



"David Biddulph" wrote:
You've probably got the cell containing your formula formatted as text.
Format as General, then use F2, Enter.
--
David Biddulph


"cahabbinga" wrote in message
...
I've tried this already... *Sorry, but when I type the formula into the
cell,
it remains as a formula??? *It doesn't import the data as it should....
This
was the same problem I was having to start with... *I can't figure it
out...
Any thoughts?? *Could there be something wrong with the destination sheet
that the data won't import?


Also, I had to track this discussion group down... *The email that was
sent
to me did not work properly... *When I clicked on the link " Read and rate
the response" all I got was a blank window???


Thanks again...


Cynthia


"KGEORGE" wrote:


=CONCATENATE(Sheet1!K33,";",Sheet1!K34)


"cahabbinga" wrote:


I have a workbook with multiple sheets, the first sheet is a summary
sheet.
I'm trying to copy data from two separate cells in one sheet to one
cell in
the summary sheet.


CLARIFICATION: *From Sheet 2 I have data in cells K33 & K34. *I need to
have
the data from both of these cells automatically copy into cell Q28 on
the
summary sheet.


DATA from cell K33 -- N3/12;
DATA from cell K34 -- cldy;rn


So that cell Q28 will read N3/12;cldy;rn


Can someone please help me out with this... *Thank you!- 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
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
how to copy a cell with formula from sheet 1 (data is all vertical) into sheet 2 parag Excel Worksheet Functions 3 June 15th 06 10:29 PM
Active Cell Copy And Paste Sheet to Sheet A.R.J Allan Jefferys New Users to Excel 4 May 4th 06 02:04 AM
Copy sheet 1 data to sheet 2 cells. Tom Doggett Excel Worksheet Functions 1 July 19th 05 11:49 PM
Copy row sheet-sheet skipping unqualified cells StevenL Excel Worksheet Functions 0 April 16th 05 11:11 PM


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