Printing a quotation mark (") in concatenate formula?

Hi, I'm trying to write a function using  =CONCATENATE() and I want to know how to add a quotation mark to the output without it screwing up the forumula.
This doesn't print out the quotation mark " between B2 and B3:
=CONCATENATE(B2,""",B3)
I've been able to do it by referencing another absolute cell with a quotation mark in it, but that's definitely the wonky way to do it.
I think what I'm looking for is an escape character. In Excel, it's four consecutive quotes that prints a single quotation mark """"
(I'm using the function to generate html, which uses a lot of quotation marks)
Any help appreciated, thanks!

you can use CHAR(34) to print the ascii character 34 (which is a double quote)

Similar Messages

  • Printing a quotation mark

    hello, here is the questions. :)
    i'd like to print a single quation mark (') into results column.
    select 'My name is ' || name || '.'
    from table
    ex results : My name is 'aaa'.
    things like that...

    I think it has to do with the syntax highlighting aspects of TOAD, or any editor. Just look at what the forum software did to your post. In the select statement, you have 2 distinct strings and a keyword (do, the highlighting here seems to be kind of java-ish, but my editor shows to and with as keywords), and a bunch of plain text.
    When you get used to doing a fast syntax scan based on colours it is a litte confusing. Things would be even worse if your string had an odd number of single quotes since everything after the ]' until the next sngle quote would show as text
    John

  • Printing Single Quotation mark in PDF report

    Hi,
    we are working in Oracle Applications 11i, using Oracle database 9i and Oracle reports builder 9i.
    In Oracle Purchasing we have item descriptions entered in a PO as A’SSY_CONNECTOR . I can see it correct from the front end.
    When querying the table po_lines_all which holds the purchase orders lines info from the database I can find the line as A¿SSY_CONNECTOR. I thought the symbol *¿* may be the caps of *'*.is it right?
    The problem is when the customized PDF report is generated from the Oracle Purchasing module it gives the item description as A’SSY_CONNECTOR.
    The font is times new roman.
    any hints please...

    Hi;
    Pelase check below thread which is mention similar error like yours
    Euro Symbol in PO PDF coming as ¤
    Regard
    Helios

  • Servlet Displaying Quotation Marks as Non-Printable Characters

    I have a servlet which is reading an HTML file and displaying it's contents. My problem is that, in the output, quotation marks in the source html (" and ') are being reproduced as non-printable characters (). Furthermore, the same servlet prints the quotation marks fine under the Linux OS and Apache Web Server, but does not under the Windows (2000) OS and IIS Web Server (running j2sdk-1_3_0_02-win). Any suggestions would be appreciated. Code in question is below. "str" is the line from the file. :
         FileReader freader = new FileReader (filePath);
         BufferedReader breader = new BufferedReader(freader);
         String str = null;
         while ((str = breader.readLine()) != null) {
         document = document + str + "\n";
         freader.close();

    Technically, you don't need to add the "\n" in there anyway. Newlines mean nothing to an HTML file if all you're doing is displaying that file. The lack of a carriage return, when the HTML is parsed, is completely irrelevant.
    Also, when handling large String concatenations, it's always going to be more efficient to use StringBuffer.
    StringBuffer sbDocument = new StringBuffer();
    while((str = breader.readLine()) != null)
       sb.append(str);
    String document = sbDocument.toString()

  • ME edition - quotation marks after LTR words

    I am working on a right-to-left document. In the document, in some places there are left-to-right words. Sometimes there are quotation marks after the LTR words that are supposed to be on the left of the LTR words because they would be (for example) at the end of a sentence. The problem is, that because it's a RTL document, so after the LTR words, InDesign places those quotation marks to the right of the LTR word.
    How can I be sure that throughout the document, the right sided quotation marks will always be on the correct side of my text (in the case, to the left of the words [since I'm using a RTL language])? Is there a GREP find/change I could do for this?
    Thank you.

    Changing the font does not make a difference.
    I'll paste the problem in ashby going to Times new roman on the next line (It's a knitting pattern):
    heel flap
    Turn work so WS of heel is facing.
    Weird. It does not show when I copy/paste it. It prints when I print. It shows up on my screen. Other ideas?

  • Passing quotation mark in parameter

    Hi,
    I have one query which I migrated from sql server database. It is given below. I am passing single quote mark as a parameter to this query but it always retrieves 0 as count. But I have 1 record in table. As a solution to this I have resolved this issue for sql server by passing two quotation mark (replacing single quotation mark with double quotation mark). This same solution applies here too. when I pass any parameter with single quote in it, it will replace single quote with double quote and then pass it to the below given procedure. But still it is not working correctly. I have similar query for retrieving that record and it is working fine. Any idea why the below query is not working correctly?
    PROCEDURE GetEntUserGroupCountWithOther
    ppGroupName IN VARCHAR2 DEFAULT '%' ,
    cp1 IN OUT SYS_REFCURSOR
    AS
    BEGIN
    OPEN cp1 FOR
    SELECT COUNT(*) TotalRecords
    FROM ( SELECT Id EnterpriseUserGroupId,
    Name NAME,
    Description DESCRIPTION,
    IsDefault
    FROM EnterpriseUserGroup ) T1
    WHERE UPPER(NAME) LIKE +UPPER('%' || ppGroupName || '%');
    END;
    Thanks,
    Edited by: user10768079 on Jul 14, 2009 10:56 PM

    not sure what your question is, seems to work
    create table EnterpriseUserGroup
    (name varchar2(10))
    insert into EnterpriseUserGroup values ('Hello');
    insert into EnterpriseUserGroup values ('World');
    insert into EnterpriseUserGroup values ('''');
    commit;
    create or replace
    PROCEDURE GetEntUserGroupCountWithOther
    (ppGroupName IN VARCHAR2 DEFAULT '%'
    ,cp1 IN OUT SYS_REFCURSOR
    AS
    BEGIN
       OPEN cp1 FOR
          SELECT COUNT(*) TotalRecords
            FROM EnterpriseUserGroup T1
           WHERE UPPER(NAME) LIKE UPPER('%' || ppGroupName || '%');
    end;
    /and to test it
    SQL> var rc refcursor
    SQL>
    SQL>
    SQL> begin
      2     GetEntUserGroupCountWithOther ('''', :rc);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> print
    TOTALRECORDS
               1
    SQL> begin
      2     GetEntUserGroupCountWithOther ('hello',  :rc);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> print
    TOTALRECORDS
               1
    SQL> begin
      2     GetEntUserGroupCountWithOther ('not there',  :rc);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> print
    TOTALRECORDS
               0

  • Quotation Marks and Validation

    I'm working with an XHTML transitional document.
    I read on another forum that it is not necessary to use " for quotation marks in regular html, and that it will validate without them. So I pasted text from am MS Word document with several quotation marks in it in a web page and it validated fine.
    However, when I type in text with quotation marks in the design area of the Web page, Dreamweaver inserts the " in the code, as if it is needed.
    What is strange is that in this same document, I typed in some quotation marks in the code, so Dreamweaver wouldn't automatically add the  ". Then I ran the validation check, and this time I got warnings that I should be using the " because the quotation marks are between tags--in this case just paragraph tags. And it only gave me the warning on the quotation marks I typed in in the code
    So what is the reason for this inconsistency?  And do I need to use the ".
    I would appreciate any assistance with this.

    Typing quotation marks in the code is not the same as in the design.  In the code quotations are used in HTML and server-side languages such as PHP and ASP differently.  In these cases quotes are needed as quotes and not as an HTML ".
    Examples:
    HTML - "Hello World"
    Prints to screen -> "Hello World"
    PHP - <?php echo "Hello World"; ?>
    Prints to screen -> Hello World
    HTML - <div style="border:1px solid #000">Hello World</div>
    Prints to screen -> Hello World [Box surrounds text with 1px solid black border]
    HTML - <div style=&quot;border:1px solid #000&quot;>Hello World</div>
    Prints to screen -> [I'm not exactly sure what this does but it's not right and could look different in every browser]
    Hopefully this makes some sense as to why DW does what it does.  If you still have questions feel free to post back.

  • Quotation Marks in Description Meta Tag

    I want to put quotation marks around a book title in a description meta tag. When I add them using the Description field in Properties, Dreamweaver substitutes &quot; for the quotation mark. I know it is doing this because the content= is in quotes. Will the quotation marks show up okay using these html entities in all search engine results that display what is in my description meta tag?
    Also, does it work okay to use html. like <em>   </em> in head meta tags?

    You're spitting into the wind with this.  Descriptions in your meta tags are displayed by some but not all search engines.  And the manner in which your meta descriptions appear on SERPs is totally out of your control.  USE ALL CAPS for BOOK TITLES.  Regular case for all the rest.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How can I eliminate automatic "quotation marks" that are appearing at the end of each line?

    I keep getting "quotation marks" at the end of every line when I type. How can I eliminate these marks as they are even showing up when I print and I will not have on my wedding programs! Please help (from a desperate bride-to-be)!

    It sounds like you are using an East Asian font and unless you are issuing invitations in Chinese, Japanese, or Korean that doesn't sound like a good idea.
    Peter

  • SUBSTITUTE Function and Quotation Marks

    How do you substitute another character for a quotation mark in a string using the SUBSTITUTE function? I want to change a string such as 12"x12"x2" to read 12x12x2. I have read the User Guide and the Formulas and Functions User Guide, but I cannot find a way to 'escape' the quotation mark so that it is interpreted literally. I tried the tilde, but that did not work either; and smart quotes is turned off. My UNIX skills are rusty. Is this possible in Numbers '09?

    Thank you very much! I had tried 3 quotes, but did not think to try 4 quotes; nor did I think of Googling an Excel solution. The logic of why this works escapes me, but it DOES work and I will have to remember this tip as well as how you found the solution. Again, thank you for providing a solution.

  • Disappearing quotation marks

    Text I've been working on in word in a +carbon type+ font used to show quotation marks in my pc, but they disappear in the mac's version of word and photoshop. In word, they sometimes show up only briefly before disappearing altogether. This is very annoying. What to do?

    You're spitting into the wind with this.  Descriptions in your meta tags are displayed by some but not all search engines.  And the manner in which your meta descriptions appear on SERPs is totally out of your control.  USE ALL CAPS for BOOK TITLES.  Regular case for all the rest.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How can i get the correct text from a string like it show in the original source with the quotation marks in the right place ?

    The text is in hebrew so the problem is that sometimes the quotation marks not in the right place.
    For example i have this text: תווית
    על בגד: ''תן לאישה לכבס. זה תפקידה''
    This is the source original text you can see the quotations marks and they are not in the right place and all i did is copy paste.
    And this is a screenshot of how this text looks like in the website in the original:
    You can see now where the quotations marks should be.
    Now this is how i'm using the text in my program:
    First of all i'm using a webclient to download the page from the website and i'm also encoding it to windows-1255 since it's in hebrew.
    using (var webClient = new WebClient())
    webClient.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    byte[] myDataBuffer = webClient.DownloadData("http://rotter.net/scoopscache.html");
    page = Encoding.GetEncoding("windows-1255").GetString(myDataBuffer);
    Then i'm extracting the places i need by reading the html file lines and parsing the right text and it's link.
    string loc;
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    List<string> lockedLinks1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    lockedThreads = new List<string>();
    lockedLinks = new List<string>();
    Regex textRegex = new Regex("ToolTip.*?(?=','<)");
    string[] fall = File.ReadAllLines(filename);
    for (int i = 0; i < fall.Length; i++)
    if (fall[i].Contains("http://rotter.net") && fall[i].Contains("locked")||
    fall[i].Contains("locked_icon_general") ||
    fall[i].Contains("locked_icon_anchor") ||
    fall[i].Contains("icon_anchor") ||
    fall[i].Contains("locked_icon_fire") ||
    fall[i].Contains("locked_icon_sport") ||
    fall[i].Contains("locked_icon_camera") ||
    fall[i].Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(fall[i + 2]))
    if (m.Value.Contains("><b"))
    loc = m.Value.Replace("\"><b", string.Empty);
    lockedLinks.Add(loc);
    string txt = fall[i - 1];
    string text = textRegex.Match(txt).Value.Replace("ToolTip','", String.Empty);
    if (text.Contains("&rsquo;"))
    text = text.Replace("&rsquo;", string.Empty);
    lockedThreads.Add(text);
    Already here on the List lockedThreads you can see the quotation marks not in the right place as in the original:
    After i'm parsing the text and links and adding them to the Lists in another class i'm doing a comparison using this Lists:
    foreach (List<string> l_branch in ListsExtractions.responsers)
    TreeNode l_node = treeView1.Nodes.Add(l_branch[l_branch.Count - 1]);
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    l_node.ImageIndex = 0;
    l_node.SelectedImageIndex = 0;
    for (int l_count = 0; l_count < l_branch.Count - 1; l_count++)
    TreeNode l_subnode = l_node.Nodes.Add(l_branch[l_count]);
    if (ListsExtractions.lockedThreads.Contains(l_subnode.Text))
    l_subnode.ImageIndex = 0;
    l_subnode.SelectedImageIndex = 0;
    The problem is in the line:
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    When it's getting to the line with the quotation marks it's never equal.
    Now there are more quotation marks.
    In general the problem when comparing both text if it's having quotation marks it's not the same.
    So i have two options:
    1. To fix it somehow so the quotation marks will be the same in both variables when comparing and also the same like in the original as they show in the html page.
    2. To remove the quotation marks from both variables.
    What should i do ? And how ? I was prefer to use the original quotation marks like in the original since they have a meaning in the place they should be. The question is how can i do it ?
    This is example of the block from the html file where the text with the quotation marks is:
    <TD ALIGN="RIGHT" VALIGN="TOP">&nbsp;<font size=-1 color=#ff9933><b>9418</b></font>&nbsp;</TD></TR><TR BGCOLOR="#eeeeee">
    <TD ALIGN="RIGHT" VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();" onmouseout="deActivate()" href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/new_locked_icon_general.gif" border="0"></a></TD><TD ALIGN="right" VALIGN="TOP" WIDTH="55%">
    <FONT CLASS='text15bn'><FONT FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=189696&forum=scoops1"><b>
    <font color="898A8E">תווית על בגד: ''תן לאישה לכבס. זה תפקידה''</b>
    </a></font></TD>

    Ok, it is unclear on what is happening here.
    Are you saying that when the webclient gets the data that it is not honoring the quote characters? Or the processing of the data buffer is causing issues?
    This is what I see the of your example text which is trying to be parse out:
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();">";
    It appears to me that the  escapes `&rsquo;` does not have matching `&ldquo;` anywhere within the tooltip. So it appears that the page properly places left quotes in when processing the page, but the raw html has broken text.
    Hence a garbage in, garbage out situation.
    William Wegerson (www.OmegaCoder.Com)

  • How Do I Display Quotation Marks in Dynamic HTML Text

    I'm using a dynamic text file that has some Quotation Marks
    that need to be displayed with the content on certain words in the
    TXT file.
    How do i display Quotation Marks inside a Dynamic text field?
    Please Advise. As soon as possible.
    Thanks

    Try this page - it does the job for you:
    http://www.dommermuth-1.com/protosite/experiments/encode/index.html
    Otherwise search this forum for "Special and characters and
    dynamic and text"
    You'll see a couple of thread on the topic. You have to
    encode the special characters for them to display correctly.

  • Can I use intelligent quotation marks on my iPhone?

    On my Mac I use "intelligent" punctuation, for example intelligent quotation marks. Can I do this on the iPhone too?
    Thanks :)

    I assume you mean the feature where you press a single quotation mark button and the appropriate version of it appears depending on whether it's left or right of the next character? In which case, no, on iPhone you have to enter each quotation mark with different buttons.

  • "Excel found unreadable content in" The Problem is text in a clob exported to excel uses - Left single quotation mark -Right double quotation mark.

    Here are the ASCII char being used.
    145 221 91 10010001 ‘ &#145; &lsquo; Left single quotation mark
    146 222 92 10010010 ’ &#146; &rsquo; Right single quotation mark
    147 223 93 10010011 “ &#147; &ldquo; Left double quotation mark
    148 224 94 10010100 ” &#148; &rdquo; Right double quotation mark
    149 225 95 10010101 • &#149; &bull; Bullet
    150 226 96 10010110 – &#150; &ndash; En dash --
    The default CHAR NOW is a black diamond with ? in middle in stead of 'Right double quoation mark' and others.
    The Text used is copied from documents user's get
    so someone is putting in I think what is called ALT ascii. This data has been used for years
    some updates where put in the system, I don't know details.
    The following error started you click YES and the XLS has alot of data missing not just the CLOB.
    Excel found unreadable content in ‘file-name’.
    Do you want to recover the contents of this workbook?
    If you trust the source of this workbook click yes.
    I can copy the text then load it into the a column in a xls. 
    I am exporting the spreadsheet from TOAD it wasn't updated so
    it has to be with the EXCEL. I tried changing the ENCODING in EXCEL but that
    didn't work.

    I'm not familiar with TOAD, could you please let us know how did you export data from TOAD to Excel?
    Based on your description, it should be an encoding problem, have you tried to change the encoding as 'UTF-8' ?
    Wind Zhang
    TechNet Community Support

Maybe you are looking for