#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JohnF
 
Posts: n/a
Default quotation marks

Hello,

I'm trying to include a quotation mark in a concatenated cell. The numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default quotation marks

Hi!

Try this:

=A1&""""&" x "&B1&""""

If that's hard to see, it's 4 double quotes after the &'s.

Biff

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JohnF
 
Posts: n/a
Default quotation marks

Thanks Biff. The quotes are there now, but there is another problem. When
the number is a fraction there is a space between the fraction and the quote;
ie
28 3/4 ", not 28 3/4". I'm using the Trim function. Any suggestions?

"Biff" wrote:

Hi!

Try this:

=A1&""""&" x "&B1&""""

If that's hard to see, it's 4 double quotes after the &'s.

Biff

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David McRitchie
 
Posts: n/a
Default quotation marks

That does not match your original question. So it is not clear what you did.
I would TRIM the original data and possibly use formatting for the
double quote (for inches).

A macro to TRIM original data values (not formulas) can be found in
http://www.mvps.org/dmcritchie/excel/join.htm#trimall

or with a worksheet formula
A1: 28 3/4_ where _ is a space
B1: =TRIM(A1) & """"


HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"JohnF" wrote in message ...
Thanks Biff. The quotes are there now, but there is another problem. When
the number is a fraction there is a space between the fraction and the quote;
ie
28 3/4 ", not 28 3/4". I'm using the Trim function. Any suggestions?

"Biff" wrote:

Hi!

Try this:

=A1&""""&" x "&B1&""""

If that's hard to see, it's 4 double quotes after the &'s.

Biff

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default quotation marks

Try this:

=TRIM(A1)&""""&" x "&TRIM(B1)&""""

Biff

"JohnF" wrote in message
...
Thanks Biff. The quotes are there now, but there is another problem.
When
the number is a fraction there is a space between the fraction and the
quote;
ie
28 3/4 ", not 28 3/4". I'm using the Trim function. Any suggestions?

"Biff" wrote:

Hi!

Try this:

=A1&""""&" x "&B1&""""

If that's hard to see, it's 4 double quotes after the &'s.

Biff

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The
numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JohnF
 
Posts: n/a
Default quotation marks

Thanks guys. That did it.

John

"Biff" wrote:

Try this:

=TRIM(A1)&""""&" x "&TRIM(B1)&""""

Biff

"JohnF" wrote in message
...
Thanks Biff. The quotes are there now, but there is another problem.
When
the number is a fraction there is a space between the fraction and the
quote;
ie
28 3/4 ", not 28 3/4". I'm using the Trim function. Any suggestions?

"Biff" wrote:

Hi!

Try this:

=A1&""""&" x "&B1&""""

If that's hard to see, it's 4 double quotes after the &'s.

Biff

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The
numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme
 
Posts: n/a
Default quotation marks

And use ALT+0215 (×) for the multiplication sign - it looks more
professional than (x)

--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JohnF
 
Posts: n/a
Default quotation marks

Thanks Bernard. I'll give it a try.
John

"Bernard Liengme" wrote:

And use ALT+0215 (×) for the multiplication sign - it looks more
professional than (x)

--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"JohnF" wrote in message
...
Hello,

I'm trying to include a quotation mark in a concatenated cell. The numbers
in the cells have been converted to text.

Cell1=28 Cell2=36
My formula is =(cell1 & " x " & cell2)

What is returned is 28 x 36

How can I get the concatenated cell to read 28" x 36".

Thanks
John




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
Saving Spreadsheet to Unicode extra quotation marks [email protected] Excel Discussion (Misc queries) 0 January 26th 06 03:19 PM
Saving Spreadsheet to Unicode extra quotation marks [email protected] Excel Discussion (Misc queries) 0 January 26th 06 03:18 PM
Inserting Quotation Marks in all Cells confused Excel Discussion (Misc queries) 4 October 19th 05 01:49 PM
How do I concatenate text that actually contains quotation marks? Excel Distress Excel Worksheet Functions 3 April 15th 05 02:23 PM
Excel Quotation Marks! MaxFrance Excel Discussion (Misc queries) 6 March 29th 05 10:45 AM


All times are GMT +1. The time now is 05:51 PM.

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"