Number formating problems

When editing an existing Voice Recognized word document I'm not able to format the numbering so that the text on the second and following lines indents to the same tab that the first line does.
I'm assuming that is because of the way the document was originally formatted.
Is there a way to correct this?

I'm afraid this is the wrong place to ask your question. The MSDN forums target programming questions using the Microsoft programming languages (such as VBA for Word).
Your question is in the category "end-user" and would be better asked at:
http://answers.microsoft.com/en-us/office/forum/word
When you ask, be sure to mention the version of Word involved. You may also need to be more specific about what a "Voice Recognized" Word document is - that's not a term I'm familiar with; others may not know what it means, exactly, either.
FWIW a setting in the number format is probably required, but how to do that will depend on the version of Word inolved and what kind of numbering was used.
Cindy Meister, VSTO/Word MVP,
my blog

Similar Messages

  • Number formating problems in Norway

    In my address book I have phone numbers formated this way:
    +47 XXXXXXXX or +47 XXX XX XXX or +47 XX XX XX XX and when I get an SMS the name of the contact shows up fine. But when the same person calls me I only get his number - not his name. So I could of course delete the +47 in front of my numbers, but then it would be wrong when I recieve an SMS - because cell phones send SMS with the +47 in front of the number. How can I get this right, or do I have to report this to Apple so that they can provide a fix in the next version of 2.0 firmware.

    Normally the phone disregards of the "+47"-part of the number and recognizes the number. For example +47-(0)12-3456789 is also recognized as 012-3456789 and Caller-ID should work just fine.
    Another thing that's been bothering me, is that it's weird that even if you turn off the number formatting, it still uses the US-format, which is "(xxx) xxx xxxx" and I don't like that becuase here in Sweden we have alot of four digit area codes.

  • Exporting from SE11, Number Format Problem

    When looking at data in SE11 from a table, the number format is XXX.XX,YY ..basically a number 900.65 is represented as 900,65 in the R/3 system. I want to export the data in a more meaningful format into Excel ie. 900.65 as 900.65 instead of 900,65. Basically the comma and the decimal point need to be interchanged. Please advise.
    Thanks,
    Anita S.

    Hi Anita,
    This not a security feature as such. User can maintain his own settings like the date format, decimal notation, thousand separator etc. It has nothing to with the security.
    So you can go ahead and do the settings. Thise will be limited to your logon only.
    Regards,
    Yogesh

  • Number Formatting Problem

    Below is the output from my JavaBean. I typed in 5.1 for the audio TextField in my user interface and I got a resulting audio value of 0.0 which happens everytime.
    Should I be using a double or a float to represent a number with a decimal point?
    init:
    deps-jar:
    compile-single:
    run-single:
    Cabin Fever, Horreur, 2002, 92 Minutes, Audio 0.0
    BUILD SUCCESSFUL (total time: 0 seconds)
         String audio1 = audioBox.getText();       try {         double audio2 = Double.parseDouble(audio1);       } catch(NumberFormatException nex) {         JFrame fr = new JFrame();         JOptionPane.showMessageDialog(fr, "Entrez un chiffre dans la     bo�te de saisie 'Audio'.",         "Avertissement!",  JOptionPane.WARNING_MESSAGE);       } http://pollscanada.com/screenshot.html

    I would be happy to help you, but I've decided not to
    contribute here anymore because of the pathetic way
    in which this site is being administered.
    Others are still helping, but more may leave if things
    don't improve. May I recommend devshed or javaranch?
    http://www.devshed.com/
    http://www.javaranch.com/

  • Problem with the number format in the graph axis with Report Generation Toolkit.

    Hi!
    I'm trying to use the Report Generation Toolkit to plot some graphs in Excel.
    My first problem is that I don't know how to configure the number format in the Excel Set Graph Font.vi so that my numbers are correctly displayed in the graph's axis. The only given option is general (0,0) but this is not enough for me, my numbers can get really small so I need engineering notation or fraccional format.
    Second: I also insert a table with the graph source data, but the numbers are not correctly displayed either: for example: 
    0,75 is shown as: 
    0,750000
    but 1,25  is shown as: 
    1!250!000
    My guess is I am making to much or wrong string to number conversions or Excel is getting it wrong but I can't find my way...
    Can someone help me with this?
    Thanks,
    Isabel

    Here is my VI, it's just a trial so it can look messy...
    Thanks,
    Isabel
    Message Edited by Isa_pm on 01-22-2007 01:12 PM
    Attachments:
    Create report.vi ‏96 KB

  • Export to Excel formating problem

    I am having a problem with the formatting of a an export file
    to Excel, which is created by a Coldfusion page. My export file
    contains numbers that need to be formatted as text. I found the
    style code below on this forum, but I am not having any luck with
    it. I tried adding it to my style file or directly as style
    formatting on the export page, but neither one of the two are
    getting recognized.
    Is there anything else I need to code before this works? Your
    help is greatly appreciated. Thanks,
    Rose
    <html>
    <STYLE TYPE="text/css">
    TD {
    mso-number-format:\@;
    </style><body>
    <!---<cfheader name="Content-Disposition"
    value="inline; filename=Exportdata1.xls">--->
    <cfcontent type="application/vnd.msexcel">
    <cfheader name="Content-Disposition" value="inline;
    filename=export.xls">
    <cfquery name = "getclub" datasource="#DSN#">
    Select mail_name name,…
    </cfquery>
    <table width="200" border="2">
    <cfoutput query='getclub'> <tr>
    <td>#customer#</td>
    <td>#dateformat(begin_date,'mm/dd/yyyy')# -
    #dateformat(end_date,'mm/dd/yyyy')#</td>
    </tr></cfoutput>
    </table>

    Could it be a case sensitivity issue? I also noticed that you
    are missing a <head> tag pair, and that your date range field
    is not actually numeric. I doubt that excel is that delicate when
    it comes to those issues, but you might try:
    <html><head>
    <STYLE TYPE="text/css">
    TD.number {
    mso-number-format:\@;
    </style></head><body>
    <cfcontent type="application/vnd.msexcel">
    <cfheader name="Content-Disposition" value="inline;
    filename=export.xls">
    <cfquery name = "getclub" datasource="#DSN#">
    Select mail_name name,…
    </cfquery>
    <table width="200" border="2">
    <cfoutput query='getclub'> <tr>
    <td class="number">#customer#</td>
    <td>#dateformat(begin_date,'mm/dd/yyyy')# -
    #dateformat(end_date,'mm/dd/yyyy')#</td>
    </tr></cfoutput>
    </table>
    </body>
    </html>

  • Number format issue in XML Publisher from OAF (',.' is replaced by 'u n')

    Hi All,
    I am facing a problem in XML Publisher report. In report I need to display some number fields with 'USD' format. In RTF, data type 'Number' and format '###,##0.00' is selected. If I run concurrent program from oracle core forms using System Administrator > Concurrent > Request, I am able to get correct number format.
    Ex : 123456.00 After Number format : 123,456.00
    Also its working fine from XML Publisher Administrator responsibility (using Preview).
    But problem is when I submit the concurrent request through OAF, I am not getting correct data. ',' is replace by 'u' and '.' is replace by 'n'.
    Ex: 123456.00 In Report 123u456n00
    Checked profile value : ICX: Numeric Character and its set to 1,000.00 at site level.
    Do I need to set character set anywhere in OAF before calling concurrent program?
    I tried to use "alter session set nls_numeric_character = ',.';" by calling stored procedure from OAF. But still its not working.
    Please give me solution for this.
    Regards,
    Sadanand

    Hell - I am running into the same issue? Did you guys find a resolution for this? Please let me know, would really appreciate your help.
    Thanks,
    Dhiraj
    [email protected]

  • Numerical Characters Formatting Problem With XML Report Output Run From Command Line

    Hi,
    Problem description is:
    When a BI Publisher concurrent job is submitted as a child job of a PL/SQL type concurrent request, the locale in OPP is not set same as of RTF template selected. This results in number format and date format localization not work as expected. For example, when BI Publisher child job is submitted after attaching RTF template (through fnd_request.add_layout API) having language-territory as de-DE, the number format on PDF output comes out as 9,999.00 instead of 9.999,00.
    Points to notice:
    1. In OPP log we noticed that xslt._XDOLOCALE always has value EN-GB irrespective of language-territory of attached RTF template
    2. NLS_NUMERIC_CHARACTER column in fnd_concurrent_request table has no value for BI Publisher job. We can set it up through fnd_request.set_options API but it is not a desired solution. We need that OPP should automatically choose correct number format depending on locale of selected RTF template
    3. When same child BI Publisher job's output is re-processed through "XML Publisher Report" program and de-DE locale is chosen for RTF template then the number format localization works fine.
    Please help us to understand root cause of this issue and how it can be resolved.
    Thanks!

    Hi,
    Problem description is:
    When a BI Publisher concurrent job is submitted as a child job of a PL/SQL type concurrent request, the locale in OPP is not set same as of RTF template selected. This results in number format and date format localization not work as expected. For example, when BI Publisher child job is submitted after attaching RTF template (through fnd_request.add_layout API) having language-territory as de-DE, the number format on PDF output comes out as 9,999.00 instead of 9.999,00.
    Points to notice:
    1. In OPP log we noticed that xslt._XDOLOCALE always has value EN-GB irrespective of language-territory of attached RTF template
    2. NLS_NUMERIC_CHARACTER column in fnd_concurrent_request table has no value for BI Publisher job. We can set it up through fnd_request.set_options API but it is not a desired solution. We need that OPP should automatically choose correct number format depending on locale of selected RTF template
    3. When same child BI Publisher job's output is re-processed through "XML Publisher Report" program and de-DE locale is chosen for RTF template then the number format localization works fine.
    Please help us to understand root cause of this issue and how it can be resolved.
    Thanks!

  • Format problem when export to RTF

    Hi,
    Iam creating a RTF template, when export to pdf everything working fine. However, when i export to RTF(word) alot of document properties got lost such as :
    font size default to 12 when it's blank line; page number are not re-start for multi sections; table properties not holding, header, footer and edge margin are not holding, etc...... Is there any way to fix these. I tried to create a word macro to fix some of the format problems, but the macro have to run manually instead of initialized form a text field option on exit. Any idea on how to fix or work around would be appreciated.
    Thanks,
    Tam

    im2famous4u wrote:
    Do you know if and when Pages will provide support for tables in rtf format? (My school requires that I send all assignments rtf format.)
    As Yvan points out, no one here can write what they know about it, and the vast majority of us know nothing about it.
    You cannot take any decision based on the assumption that Pages will one day support tables in RTFs, because it may never happen. If you need both RTF and tables, the only option is another tool (like NeoOffice, TextEdit, MS Office and so on).

  • Phone number format edit

    Hello everyone, i have a problem with my iPhone 4S. I'm from Romania so it's not a verizon problem only... When a person in my contact list is calling me it only shows the numer of the caller not the ID, but after i hang-up and go to call history it shows the ID. I tried to put +4 in front of the number but now when someone is calling it shows the ID but in call history it shows the phone number. The phone is Jailbroken so if there is any solution what requires a jailbroken phone i am happy to try it out. The format region is on Romania and the International Assist is OFF. I tried as many things i could find on the internet about this but still can't figure it out. Can you guys help me? My firmware is 5.1.1 and i DON'T want to upgrade to 6 because i use a gevey sim card to unlock it, so anything else that can help ?

    Thanks, indeed. I had my Phone language set to "English (United States)" . I never thought that this would change the number format. I changed it to English and now it's ok.
    + it stopped with that annoying correction while i'm writing text.
    So double thanks
    Attachments:
    wp_ss_20130524_0002.jpg ‏71 KB

  • Number format changed to string in excel

    I want to store a table in excel file and in the table
    there is a number field that when I store it in the
    excel file ,I want it change to String format,
    because when it store it in the number format,
    it is a wrong number.
    thanks in advance

    "883923"
    Pretend you are explaining this to someone who has no idea what you are talking about (because we don't).
    Statements like "but therewas a problem" are next to meaningless because you didn't explain what the problem is.
    You don't give any useful information such as:
    * Version of JDeveloper/ADF
    * What technologies are you using (I guess ADF Faces, but I don't know)?
    * How did you try exporting to Excel?
    * What was the exact problem you had?
    I've already spent more time thinking about how to ask you questions to get to the real problem than you have formulating your question.
    John

  • Currency format problem while exporting as excel

    Hi
    I have to create a report for which the currency format should be $#,##0.00 and -$#,##0.00 for negative numbers.
    In the text form field of rtf template, I have selected number format and removed the portion ;($#,##0.00) from $#,##0.00;($#,##0.00).When I view the report as HTML the numbers are showing in proper format.($#,##0.00 or -$#,##0.00).But when the report is exported as excel ,the negative number format changes to ($#,##0.00) in red color.
    Can anyone tell me how avoid this problem?
    Thanks in advance
    Naveen

    I think this is an Excel issue - you can right mouse click in Excel the column header and "Format Cells&gt;Text"
    You could also append a ' character to your numbers in BI Answers ie: '6035784010491980 which should give you the correct format in Excel.
    eg. CONCAT( '''', CAST ( '6035784010491980 AS CHAR) )
    There is also an MS Office plug in available for OBIEE this may give you further options.

  • Number formatted Amount field not working in Excel 2010

    Hi,
    We have BI reports in EBS 11.5.10.2 designed using word 2007 RTF templates. The output is selected to write to Excel so that they can calculate on amount fields. Recently we upgraded to Office 2010 and the amount filed which has number format when downloaded to Excel will not allow to use functions like Sum. If i deleted the table column and add the column back, then it works. Is anyone runing into similar issues....

    Interesting to note this is still a problem, but even more interesting is as to why Excel works fine the first time you bring in the xsd, but not after you save it.  I found information that says it's related to resolving externally referenced xsds,
    which is fine, but again, why does it work the first ime and not the second?   If it were a problem with external xsds then it should never work at all so I think that answer is bogus.
    Something has to be getting corrupted on the save and it's not important enough to MS to spend the time to fix it.

  • Strange number rounding problem

    I am using CR 8.5 and I have a number field inserted into the detail section of my report.
    Although rounding is set to 0.001 in the number format, the field displays rounded to the nearest whole number (e.g. 11.235 is displayed as 11.000). I have checked the field in the underlying tables and inserted the same field into another report without any problems.
    I've used different number formats in hundreds of reports without any problems, the only difference here is that the report was set-up by another user on another PC (but using the same version of Crystal).
    I suspect that rewriting the report from scratch would solve the problem, but I'd rather avoid this.
    Any suggestions?

    Hi
    Have you tried this:
    1. Right click on the field -> Format field -> Customize -> Rounding -> select the format that is required.
    Hope it helps!!!
    Regards
    Sourashree

  • APEX cannot accept any other number format mask except 999G999G999G999G990?

    Hi, guys:
    Can anyone help me on this problem? I have a report with a column of number type, but I want to use accounting format mask such as <1234.56>, however. whenever I choose any other format model for this number column, I got the error message as "ORA-01481: invalid number format model", I can only choose Numeric format mask: 999G999G999G999G990
    Anyone could give me a hint on this? I am using APEX 4.1 and Oracle 11G R2. Here is my query for report
    select uh.descr, inv6.userkey, inv6.invno, inv6.amt-pa_temp.Subtotal_Payment over_short_amount
    from
    (select pa6.invoicekey, sum(pa6.amt) Subtotal_Payment
    from payments pa6
    where trunc(pa6.pmtdate)<=to_date(:P55_DP_VPF_PROD_DATE,'DD-MON-YY')
    and pa6.type not in (5)
    and pa6.invoicekey in (select pa5.invoicekey
    from payments pa5
    where trunc(pa5.pmtdate)=to_date(:P55_DP_VPF_PROD_DATE,'DD-MON-YY')
    and pa5.type=2
    group by pa6.invoicekey) pa_temp, invoices inv6, userhdr uh
    where inv6.userkey=uh.userkey
    and pa_temp.invoicekey=inv6.invoicekey
    and pa_temp.Subtotal_Payment<>inv6.amt
    and abs(inv6.amt-pa_temp.Subtotal_Payment)>1000
    order by 1Thanks a lot!
    Sam

    I found the cause. Thanks!

Maybe you are looking for

  • Convert database to use OMF

    Hi, im trying to convert my database to use OFM i set the parameter to db_create_file_dest='/u01/oradata/DATABASE' (spfile) and after that i mount the database and submit the rename command : SQL>host mv /u01/oradata/DATABASE/system01.dbf O1_MF_ora_0

  • Running the report in Bitmap and Character mode

    Hi, We have the reports which can run in both the character mode and Bitmap mode. The only problem I'm facing is font size in the character mode report. If the report is run in Character mode then the font size of the report will be greater. As the s

  • EDI ANSI X12 and relavent IDOC types and messages...

    Hi ,     Is there any place where we can get the relevant Idoc types and messages for EDI Transacitons below: 210 -Motor Carrier Freight Details and Invoice 240 -Motor Carrier Package Status 753 -Request for Routing Instructions 754 -Routing Instruct

  • Filemaker (10) crashes post Yosemite upgrade

    We are still using Filemaker 10 with zero problems up until now.  However, with the most recent upgrade to Yosemite, we are experiencing frequent crashes during which Filemaker will spontaneously shut down after a few minutes of working within the FM

  • How to connect, add delete and modify sqllite data base.

    dear friends, i am developing a stand alone project, in that i want to store the datas in the local machine using sql lite. Iam new to Flex. i know air and flash very well.. any body can help me, how to connect, add, delete and modify the data in sql