Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
caliskier
 
Posts: n/a
Default Wanting to link inputed data to a paragraph on a different sheet


We are making a spreadsheet that we are going to give to another
department to fill out. They will fill in an amount and an
explanation. We need this data to link into one cell in paragraph form
if possible. For example they will enter in column D the explanation,
and in E the amount like below:

Because I said so $10
Who is asking $16

I want it to show in the other paragraph cell:

$10 Because I said so; $16 Who is asking;

The row numbers are 8-52 and the difficult thing is that some rows will
be skipped meaning they might enter data in row 8 and 9, and then skip
to 33 and 34 then skip again to 45.

I have tried using & and” “ in formulas to combine and space things
out, but two problems, no $ show up with the numbers in the paragraph
and with the skips we end up with several spaces where it looks like
this

$10 Because I said so; $16 Who is
asking;

Can anyone help here


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=502534

  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary Brown
 
Posts: n/a
Default Wanting to link inputed data to a paragraph on a different sheet


Assuming your data in rows 8 to 52 is in columns A and B, put the
following formula in column c on rows 8 to 52:-

=IF(AND(ISBLANK(A8),ISBLANK(B8)),"",TEXT(B8,"$##") &" "&A8&"; ")

Then in the cell where you want the description:-

$10 Because I said so; $16 Who is asking;

enter the following:-

=TRIM(C8&C9&C10&C11&C12&C13&C14&C15&C16&C17&C18... ........&C52)


--
Gary Brown
------------------------------------------------------------------------
Gary Brown's Profile: http://www.excelforum.com/member.php...o&userid=17084
View this thread: http://www.excelforum.com/showthread...hreadid=502534

  #3   Report Post  
Posted to microsoft.public.excel.misc
Bob
 
Posts: n/a
Default Wanting to link inputed data to a paragraph on a different sheet

Assume cell numbers:
A B
1 | Because I said so $10
2 | Who is asking $16

Formula
=B1 & " " & A1 & ";" & " " & B2 & " " & A2 & ";"

The " " puts the spaces in your sentance.

"caliskier" wrote:


We are making a spreadsheet that we are going to give to another
department to fill out. They will fill in an amount and an
explanation. We need this data to link into one cell in paragraph form
if possible. For example they will enter in column D the explanation,
and in E the amount like below:

Because I said so $10
Who is asking $16

I want it to show in the other paragraph cell:

$10 Because I said so; $16 Who is asking;

The row numbers are 8-52 and the difficult thing is that some rows will
be skipped meaning they might enter data in row 8 and 9, and then skip
to 33 and 34 then skip again to 45.

I have tried using & and€ €œ in formulas to combine and space things
out, but two problems, no $ show up with the numbers in the paragraph
and with the skips we end up with several spaces where it looks like
this

$10 Because I said so; $16 Who is
asking;

Can anyone help here


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=502534


  #4   Report Post  
Posted to microsoft.public.excel.misc
Bob
 
Posts: n/a
Default Wanting to link inputed data to a paragraph on a different sheet

I just saw that you have tried that.
I not quite sure about the spaces, but adding the $ can be used through the
& function. ="$" & B1.

"caliskier" wrote:


We are making a spreadsheet that we are going to give to another
department to fill out. They will fill in an amount and an
explanation. We need this data to link into one cell in paragraph form
if possible. For example they will enter in column D the explanation,
and in E the amount like below:

Because I said so $10
Who is asking $16

I want it to show in the other paragraph cell:

$10 Because I said so; $16 Who is asking;

The row numbers are 8-52 and the difficult thing is that some rows will
be skipped meaning they might enter data in row 8 and 9, and then skip
to 33 and 34 then skip again to 45.

I have tried using & and€ €œ in formulas to combine and space things
out, but two problems, no $ show up with the numbers in the paragraph
and with the skips we end up with several spaces where it looks like
this

$10 Because I said so; $16 Who is
asking;

Can anyone help here


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=502534


  #5   Report Post  
Posted to microsoft.public.excel.misc
caliskier
 
Posts: n/a
Default Wanting to link inputed data to a paragraph on a different sheet


Gary Brown Wrote:
Assuming your data in rows 8 to 52 is in columns A and B, put the
following formula in column c on rows 8 to 52:-

=IF(AND(ISBLANK(A8),ISBLANK(B8)),"",TEXT(B8,"$##") &" "&A8&"; ")

Then in the cell where you want the description:-

$10 Because I said so; $16 Who is asking;

enter the following:-

=TRIM(C8&C9&C10&C11&C12&C13&C14&C15&C16&C17&C18... ........&C52)



WOW I'm impressed, works like a dream!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Thank you so much!!


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=502534



  #6   Report Post  
Posted to microsoft.public.excel.misc
caliskier
 
Posts: n/a
Default Wanting to link inputed data to a paragraph on a different sheet


Bob Wrote:
I just saw that you have tried that.
I not quite sure about the spaces, but adding the $ can be used through
the
& function. ="$" & B1.

"caliskier" wrote:


We are making a spreadsheet that we are going to give to another
department to fill out. They will fill in an amount and an
explanation. We need this data to link into one cell in paragraph

form
if possible. For example they will enter in column D the

explanation,
and in E the amount like below:

Because I said so $10
Who is asking $16

I want it to show in the other paragraph cell:

$10 Because I said so; $16 Who is asking;

The row numbers are 8-52 and the difficult thing is that some rows

will
be skipped meaning they might enter data in row 8 and 9, and then

skip
to 33 and 34 then skip again to 45.

I have tried using & and€ €œ in formulas to combine and space

things
out, but two problems, no $ show up with the numbers in the

paragraph
and with the skips we end up with several spaces where it looks like
this

$10 Because I said so; $16 Who

is
asking;

Can anyone help here


--
caliskier

------------------------------------------------------------------------
caliskier's Profile:

http://www.excelforum.com/member.php...o&userid=25887
View this thread:

http://www.excelforum.com/showthread...hreadid=502534



Thanks for your help, yes I tried that, but what happens is it inserts
a ton of spaces for skipped cells


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=502534

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
Help PLEASE! Not sure what answer is: Match? Index? Other? baz Excel Worksheet Functions 7 September 3rd 05 03:47 PM
Append the data given in diff sheets of an Excel File to one sheet sansk_23 Excel Worksheet Functions 3 May 10th 05 02:00 AM
Pulling data from 1 sheet to another Dave1155 Excel Worksheet Functions 1 January 12th 05 05:55 PM
Automatic cell increment with data from sheet 1 to sheet 2 Big G Excel Worksheet Functions 2 December 20th 04 05:59 PM
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 05:30 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"