Two different values in a single cell...

  • Thread starter Thread starter Patrick
  • Start date Start date
P

Patrick

Hi,

Is it possible to have two different values (coming from
another sheet) in a single cell? For example,

0.87 (0.97)

In that case 0.87 comes from a cell on sheet1 and 0.97
from a cell on sheet2. Thanks for the help.

Patrick,
 
Hi

You can concatenate two results into one cell. This makes it inot a text
cell, however, so you cannot do maths on it quite so easily. To join the
info, just use the CONCATENATE function, or the & sign
=A2&" " &A3
You may also need the TEXT funtion, depending on what format you want the
result to be
 
Patrick,

Try

=TEXT('Sheet1'!A1,"0.00") &" "&TEXT('Sheet2'!A1,"(0.00)")

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Hi,

Thanks it works very well...

Patrick,
-----Original Message-----
Patrick,

Try

=TEXT('Sheet1'!A1,"0.00") &" "&TEXT('Sheet2'!A1,"(0.00)")

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)




.
 
Hi,

Thanks it works very well...

Patrick,
-----Original Message-----
Patrick,

Try

=TEXT('Sheet1'!A1,"0.00") &" "&TEXT('Sheet2'!A1,"(0.00)")

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top