Column alignment with apex_item.text

I am trying to create a tabular form with the following statement
select apex_item.text(10,empno) empno,
apex_item.text(20,ename) ename,
apex_item.text(30,sal,15,15) sal,
apex_item.text(40,comm) comm
from emp
The statement above works fine, however, if I try to align the sal column by adding style for the p_attribute parameter such as
apex_item.text(30,sal,15,15,style="text-align:right;") sal
I get the following
Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00907: missing right parenthesis
In addition to the column alignment I would like to format the column like $999,999.99 and provide a column total at the bottom, is this possible with apex_item.text?
Any thoughts would be most appreciated
Regards,
Mark

Hi,
You could try using TO_CHAR(sal,'$999,999.99') but I'm not sure what that may do to the submit process - I tend to leave the number unformatted and only use formats for reports.
If you are able to add in formatting, it may actually make it a lot harder to provide totals. A total could be done by looping through the input items that have a name attribute of "f30" (as you've used 30 for the index number of that item) - using parseInt() or parseFloat() javascript functions would convert the strings into numbers, but the commas and currency symbols would stop this working.
Andy

Similar Messages

  • Apex 4.2 Report region sql query with "apex_item.text" renders wrongly

    In APEX 4.2 page i have created region "Report data".
    Type="SQl Query".
    "User Interface"-->"Template"="Reports Region".
    "Region Source"="select apex_item.text(1, '111') as c1 from dual".
    Actually the select query is little bit more complex, but generally simplified it is such, that it uses function "select apex_item.text" to construct HTML textfield.
    If i run in Sql Developer query
    select apex_item.text(1, '111') as c1 from dual;Then result is:
    <input type="text" name="f01" size="20" maxlength="2000" value="111"  />But in APEX 4.2 the report is rendered so:
    <td  headers="c1">&lt ;input type=&quot ;text&quot ; name=&quot;f01&quot; size=&quot;20&quot; maxlength=&quot;2000&quot; value=&quot;111&quot;  /&gt ;</td>(for this forum to display correctly i had to put extra spaces between" &gt" and ";" and so on)
    And APEX 4.2 shows ugly html inside report cell/slot for me, displaying characters/symbols ">". The reason is that APEX HTML page source does not have symbol ">" but has " &gt ;" .
    In APEX 3 i have similar query working well, without such anomaly.
    What attribute should i change in APEX 4.2 region to display my query result as needed?
    I need that function "apex_item.text", i cannot remove it.
    Edited by: CharlesRoos on 13.02.2013 15:28
    Edited by: CharlesRoos on 13.02.2013 15:29
    Edited by: CharlesRoos on 13.02.2013 15:29

    CharlesRoos wrote:
    In APEX 4.2 page i have created region "Report data".
    Type="SQl Query".
    "User Interface"-->"Template"="Reports Region".
    "Region Source"="select apex_item.text(1, '111') as c1 from dual".
    Actually the select query is little bit more complex, but generally simplified it is such, that it uses function "select apex_item.text" to construct HTML textfield.
    If i run in Sql Developer query
    select apex_item.text(1, '111') as c1 from dual;Then result is:
    <input type="text" name="f01" size="20" maxlength="2000" value="111"  />But in APEX 4.2 the report is rendered so:
    <td  headers="c1">&lt ;input type=&quot ;text&quot ; name="f01" size="20" maxlength="2000" value="111"  /&gt ;</td>(for this forum to display correctly i had to put extra spaces between" &gt" and ";" and so on)
    And APEX 4.2 shows ugly html inside report cell/slot for me, displaying characters/symbols ">". The reason is that APEX HTML page source does not have symbol ">" but has " &gt ;" .
    In APEX 3 i have similar query working well, without such anomaly.
    What attribute should i change in APEX 4.2 region to display my query result as needed?Ensure that the Display As Column Attribute for the C1 column is Standard Report Column.

  • Javascript calculation with APEX_ITEM.TEXT question

    Here is my code:
    select APEX_ITEM.TEXT(10,conversion_factor,10,null,null,'conv'||rownum) "Convert", APEX_ITEM.CHECKBOX(1,null,'CHECKED') "Unlocked", APEX_ITEM.DISPLAY_AND_SAVE(2,spec_name) "Name", APEX_ITEM.CHECKBOX(3,null,'CHECKED') "N/A", APEX_ITEM.CHECKBOX(4,null,'UNCHECKED') "Unknown", CASE NVL(secondary_value, 'x')
    WHEN 'x' THEN (APEX_ITEM.TEXT(5,null,35,null,'onChange=$x("PrimaryUnit'||rownum||'").value=$x(("conv'||rownum||'").value)*this.value;','PrimaryUnit'||rownum))
    ELSE APEX_ITEM.TEXT(6,primary_value,35,null,'PrimaryUnit') END "Primary Unit",
    CASE NVL(primary_symbol, 'x')
    WHEN 'x' THEN ' '
    ELSE APEX_ITEM.DISPLAY_AND_SAVE(7,primary_symbol) END "Primary Symbol",
    CASE NVL(primary_symbol, 'x')
    WHEN 'x' THEN ('<center>Edit</center>')
    ELSE APEX_ITEM.TEXT(8,secondary_value,20,null,'onChange=$x("PrimaryUnit'||rownum||'").value=$x(("conv'||rownum||'").value)*this.value;','SecondaryUnit'||rownum) END "Secondary Unit",
    CASE NVL(secondary_symbol, 'x')
    WHEN 'x' THEN ' '
    ELSE APEX_ITEM.DISPLAY_AND_SAVE(9,secondary_symbol) END "Secondary Symbol", conversion_factor
    from prd_model_specs_maint_vw
    where equip_id = :P201_EQUIP_ID
    and spec_group_name = :P240_ID
    The scenario is this: I have a field (PrimaryUnit + rownum). I would like to have a user put a number in this field and the javascript should take that value and take the conversion_factor and calculate what the new value is a place it in the second field (SecondaryUnit + rownum). I am currently getting a result of 0 every time. The javascript is an onChange call. This query is a bit messy, so let me know if you need more explanation. Thanks.
    Jon

    I like that solution. I will give that a shot. I did get the conversion to work, but it is messier than Andy's option. Here's is how the query looks now for anyone's reference:
    select APEX_ITEM.TEXT(10,conversion_factor,10,null,null,'conv'||rownum) "Convert", APEX_ITEM.CHECKBOX(1,null,'CHECKED') "Unlocked", APEX_ITEM.DISPLAY_AND_SAVE(2,spec_name) "Name", APEX_ITEM.CHECKBOX(3,null,'CHECKED') "N/A", APEX_ITEM.CHECKBOX(4,null,'UNCHECKED') "Unknown", CASE NVL(secondary_value, 'x')
    WHEN 'x' THEN (APEX_ITEM.TEXT(5,null,35,null,'onChange=$x("SecondaryUnit'||rownum||'").value='||conversion_factor||'*this.value;','PrimaryUnit'||rownum))
    ELSE APEX_ITEM.TEXT(6,primary_value,35,null,'PrimaryUnit') END "Primary Unit",
    CASE NVL(primary_symbol, 'x')
    WHEN 'x' THEN ' '
    ELSE APEX_ITEM.DISPLAY_AND_SAVE(7,primary_symbol) END "Primary Symbol",
    CASE NVL(primary_symbol, 'x')
    WHEN 'x' THEN ('<center>Edit</center>')
    ELSE APEX_ITEM.TEXT(8,secondary_value,10,null,'onChange=$x("PrimaryUnit'||rownum||'").value=this.value/'||conversion_factor||';','SecondaryUnit'||rownum) END "Secondary Unit",
    CASE NVL(secondary_symbol, 'x')
    WHEN 'x' THEN ' '
    ELSE APEX_ITEM.DISPLAY_AND_SAVE(9,secondary_symbol) END "Secondary Symbol", conversion_factor
    from prd_model_specs_maint_vw
    where equip_id = :P201_EQUIP_ID
    and spec_group_name = :P240_ID
    The change that made it work is this:
    onChange=$x("SecondaryUnit'||rownum||'").value='||conversion_factor||'*this.value;
    The '||conversion_factor||'*this.value is different and now works. Thanks,
    Jon

  • How to achive table column header style (vertical text)?

    Hi,
    Can we show adf table column headers with vertical text, and with rotation. For eg. "Dept Id" lable should show up as similar to what the below HTML does:
    <html>
    <div style="float: left;
    position: relative;
    -moz-transform: rotate(1000deg); /* FF3.5+ */
    -o-transform: rotate(290deg); /* Opera 10.5 */
    -webkit-transform: rotate(290deg); /* Saf3.1+, Chrome */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); /* IE6,IE7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3); /* IE8 */">Dept Id</div></html>
    Edited by: pramod gujjeti on Sep 18, 2011 8:51 PM
    Edited by: pramod gujjeti on Sep 18, 2011 8:51 PM

    Hi,
    I've used the below style classes in CSS, but still not getting the accurate Column Header Vertical Text. Also, in IE browser column header text is shrinked vertically when headerClass styles are applied!
    Any help appreciated!
    .sch af|column::column-header-cell {
    vertical-align: bottom;
    padding-bottom: 10px;
    height: 80px;
    .schc af|column::column-header-cell-content {
    -moz-transform: rotate(270deg);
    /* FF3.5+ */
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    /*IE6,IE7*/
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    /*IE8*/
    -o-transform: rotate(270deg);
    /*Opera 10.5*/
    -webkit-transform: rotate(270deg);
    /*Saf3.1+, Chrome*/
    position: relative;
    vertical-align: bottom;
    Edited by: pramod gujjeti on Sep 27, 2011 9:09 AM

  • RadioButton Alignment With Large Font

    Hi folks,
    The XAML RadioButtons are fine when using the default font but when I boost the font size (see the image below) the button is way above the text. How do I make the button align with the text at a large font size? XAML code at the bottom of the message.
    <Page
    x:Class="Hits.BlankPage1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:ClassicHits"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="0" HorizontalAlignment="Center" VerticalAlignment="Center">
    <StackPanel Orientation="Vertical">
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="28" Name="rblA" Margin="0,0,0,30" Content="First Option" />
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="28" Name="rblB" Content="Second Option" >
    </RadioButton>
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="28" Name="rblC" Margin="0,30,0,0" Content="Third Option" >
    </RadioButton>
    </StackPanel>
    </Grid>
    </Page>
    Ken Cox - Microsoft MVP [ASP.NET]

    Please find 2 examples:
    <StackPanel>
    <!-- Note: adjust padding / font size -->
    <StackPanel Orientation="Vertical" Margin="30">
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="18" Padding="6,2,0,0" Margin="0,0,0,30" Content="First Option"/>
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="18" Padding="6,2,0,0" Margin="0,0,0,30" Content="Second Option"/>
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="18" Padding="6,2,0,0" Content="Third Option"/>
    </StackPanel>
    <StackPanel Orientation="Vertical" Margin="30">
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="28" Padding="6,-6,0,0" Margin="0,0,0,30" Content="First Option"/>
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="28" Padding="6,-6,0,0" Margin="0,0,0,30" Content="Second Option"/>
    <RadioButton GroupName="Hits" HorizontalAlignment="Left" FontSize="28" Padding="6,-6,0,0" Content="Third Option"/>
    </StackPanel>
    </StackPanel>

  • Align OCR'd Text to Left

    Hi,
        I have recently scanned in several pages from a document and have run it through OCR. All is well, except that the text on some pages is not left aligned with the text on subsequent pages (see example in picture below):
    Each page is slightly differently misaligned from the others, and I don't want to have to realign it all manually. Is there a method of automatically aligning the text vertically in an automatic fashion after doing OCR on a document?
    b1177

    Not directly. You can use the Object Touchup tool to move the whole block and the crop tool to make things consistent. That may be a bit more manual than you like. I don't think it can be automated.

  • Tabular form with uneditable apex_item.text column

    When I use the following query for my Tabular Form I have the AGE column uneditable
    select
    "ID",
    "ID" ID_DISPLAY,
    apex_item.text(44,"AGE") as "AGE"
    from "#OWNER#"."SAS_TEST"
    I changed the AGE column type to Standard Report Column but still the column values are not able to update the values.
    The column will show the HTML input and view the correct values from the table but you can not update the column.
    I have apex 4.0.2

    I found the solution. You must have both the original column in your sql (as hidden type), and you must add the APEX_ITEM.TEXT with an alias different than the true db column name.
    In order to set the hidden real column values after submitting the page, add the page process pl/sql below. Of course you need to find the g_fxx number by looking at your page source. This will transfer the values from one pl/sql table to the other which is mapped in the MRU process.
    On Submit - Before Computations and Validations
    BEGIN
    -- Database Column Name: DEFAULT_VALUE
    -- Set the hidden DEFAULT_VALUE field for all visible records to null
    -- Note: g_f19 maps to the hidden DEFAULT_VALUE column
    -- g_f30 maps to the visible DEFAULT_VALUE_ADMIN column
    FOR ii IN 1 .. APEX_Application.g_f19.COUNT
    LOOP
    APEX_Application.g_f19(ii) := APEX_Application.g_f30(ii);
    END LOOP;
    END;

  • How to align text paragraphs with caption text boxes

    Hello,
    Im moving from QuarkXpress to InDesign, and Im setting up styles, templates, libraries, etc...
    The issue Im having is that when I add an image with a text caption box in one of the columns, the text that wraps around the caption text box, no longer aligns to the other columns, its off. I can't get it to realign to the other columns.
    Any help is appreciated.

    1. Is the leading of your caption the same as the body text? If not, you have to choose to align the top of the first line (slightly jarring) or bottom of the last line.
    2. It appears to me you have the caption vertically centred. That will make it far harder.
    To make it feasible to do manually, you can set the caption box text frame to start at offset "Leading", move the text frame to start exactly at the bottom of the image, and make sure all your images' heights are multiples of your leading. Group the caption frame and the caption box to make moving around easier.
    "Align to baseline" would be a good option, except that I find it too constricting on the entire rest of my designs (viz. the already observed "jump per entire line only"). One way around that is to set up your baseline grid to half, 1/3, or 1/4 of your leading. That way you have at least some control left over inter-paragraph whitespace, and you can still manually drag your images and have them snap to the closest "actual" baseline.

  • SQL QUERY updateable report with APEX_ITEM fields to update hidden columns

    Here is my SQL query:
    select
    "EMPLOYEE_ID",
    "PUBLICATION_ID",
    "TITLE",
    '<NOBR>1. ' || APEX_ITEM.TEXT(101,CODE1,2,3) || '  ' ||
    APEX_ITEM.TEXT(102,CODE1_PCT,2,3) || ' %</NOBR><BR>' ||
    '<NOBR>2. ' || APEX_ITEM.TEXT(103,CODE2,2,3) || '  ' ||
    APEX_ITEM.TEXT(104,CODE2_PCT,2,3) || ' %</NOBR><BR>' ||
    '<NOBR>3. ' || APEX_ITEM.TEXT(105,CODE3,2,3) || '  ' ||
    APEX_ITEM.TEXT(106,CODE3_PCT,2,3) || ' %</NOBR>' rfcd_codes,
    APEX_ITEM.DISPLAY_AND_SAVE(100,CODE1) hidden_rfcd1,
    mycomments
    from "#OWNER#".mytable
    I have 3 code fields with their percentages (_pct). I have concatinated them so I can format them nicely on the page.
    I have create a process 'on-submit and before computations and validations' where I was hoping to assign my table columns (eg the code and pct columns) from the APEXITEMs in my select statement.
    I can get the values from these (APEX_ITEM) fields by referencing APEX_APPLICATION.G_F10(i) etc.... so thats cool.
    But my problem is how do I reference the table columns so I can assign them.
    I am using a 'Multi Row Update' process to perform the update to the database.
    P.S. mycomments column is working fine. It gets updated nicely but its just those other APEX_ITEM fields.

    I don't have the apex_application.g_f01(i) referenced in the page source...In the page source you wouldn't find anything by that name
    Identify the tabular form's checkbox column in the page(firebug/chrome developer panel makes this easy)
    It should be like
    &lt;input id=&quot;...&quot; value=&quot;&quot; type=&quot;checkbox&quot; name=&quot;fXX&quot; &gt;we are interested in the name attribute , get that number (between 01 and 50)
    Replace that number in the code, for instance if it was f05 , the code would use
    apex_application.g_f05
    --i'th checked record' primary keyWhen you loop through a checkbox array, it only contains the rows which are checked and it is common practice to returns the record's primary key as the value of the checkbox(available as the the i'th array index as apex_application.g_f05(i) , where i is sequence position of the checked row) so that you can identify the record.

  • Sum / Format on APEX_ITEM.TEXT columns

    Hi! I have two questions :
    In apex 3.2, on an updateable report, I am using APEX_ITEM.TEXT for a column.
    1) The data contained in this cell are hours (so numeric and the sum should work). I am not able to get a sum on this column. I am checking the "sum" field in the report attributes. All in can see is the last line with "0" in it.
    Anybody has an idea on how to have the sum on this column?
    2) How can I have a format on the APEX_ITEM.TEXT column ? I tried to put 90D0 in the number/date format but it does nothing.
    Thanks!
    Amelie
    Edited by: user13485643 on Feb 8, 2011 12:30 PM

    Sorry, it was long before I answer.
    First of all, thank you so much for your idea! I am now able to get the sum dynamically! Here's how :
    I created this javascript function. The variable myName is the name of the inputs and myHeader is the value you get in the td tag <td class="t20data" headers="HrsDim">
    function updateSum(myName, myHeader)
         myArray = document.getElementsByName(myName);
         mySum = 0;
         for (var i=0; i < myArray.length; i++)
              val = myArray.value
              if (val == Number(val)){
                   mySum = mySum + Number(val);
         $('td[headers=' + myHeader + ']').last().text(mySum).addClass("sum");
    In my apex item's attribute I added this :onchange="updateSum(this.name, 'HrsDim')"
    Works like a charm!!
    Thanks again!!!
    Edited by: Amelie on Feb 17, 2011 8:06 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can I create a document with two columns in which the text in the left hand column flows to the left column on page 2,3 etc, and doesn't interfere with the text I want to place in the right? Pages 5.

    I'm using pages 5 and want to comment in a right hand column, on a (latin) text which I wish to place in a left hand column.
    Ideally I'd like to be able to copy and paste the latin text and see it flow over into the left hand column on multiple pages.
    At the moment it is impossible for me to keep the text only in the left hand column Any help!?
    B

    Columns do what columns do, flow from the bottom of the left hand column to the top of the right hand next column. So won't do what you want.
    Your tag says you are using OS X 10.5.8 but you say you are using Pages 5 so one or the other is not correct.
    If you migrated up to Pages 5 what did you do with your previous Pages '08 or '09?
    Because Pages 5 is missing over 100 features, one of which is Textbox linking, that would allow to flow down through a series of Textboxes set up like columns.
    What you can do is run the Latin text down a narrow document to the left and add individual Textboxes to the right and put your English translations in those. The Latin will flow but the English will not.
    Peter

  • Text value not aligned with text caption

    Hello,
    In my text fields, the text value is always slightly raised from the text caption. Is there a way to get them to align?
    Thanks,
    Gail

    Hi Geo,
    I have tried top, middle, and bottom alignment and although they give different results, none are actually aligned with the caption text.
    The top and middle alignments still have the value text raised above the caption text.
    The bottom alignment gives a puzzling result of the value text being sunk below the caption text and actually somewhat cut off at the bottom.
    For some of my text boxes I have thrown together a work-around solution for this by setting the baseline shift for the value text to -3pt. Although this does seem to work, I don't imagine this is how the program was INTENDED to be used and I'd like to understand how to get the text aligned without having to tweak baselines.
    Any ideas or suggestions are welcome.
    Thanks,
    Gail

  • Align on comma tabs with tagged text in ID CS2

    We have a problem generating tabs aligned on comma with tagged text in CS2.<br />It works for other characters (like dot for example). Any attempt until now leads to an Indesign CS2 crash at import.<br /><br />The problem seems to be that the comma is also the separator for the parameters of the pTabRuler tag.<br /><br />In order to find a suitable syntax we have tried the following (without success) :<br />1) use the syntax from the documentation (tagged text user guide)<br />2) do some roundtripping (ie export and place the same tagged text. This works in CS3, but the CS3 syntax is version 5 while CS2 is version 4)<br />3) use an hexa definition of the comma <0x002C> similar to the "Indesign tags for special characters<br />4) upgrade to the last CS2 update (4.0.5)<br /><br />Of course one could say we just have to upgrade to CS3 and case is solved.<br />As we have a lot of scripting to convert between CS2 and CS3, we had like to know first if there is a solution for CS2.<br /><br />b Here is a sample of the tagged text we cannot import in CS2:<br /><br /><ASCII-WIN><br /><Version:4><FeatureSet:InDesign-Roman><ColorTable:=<Black:COLOR:CMYK:Process:0,0,0,1>>< br /><DefineParaStyle:NormalParagraphStyle=<Nextstyle:NormalParagraphStyle>><br /><ParaStyle:NormalParagraphStyle><pTabRuler:113.38582677165356\,Char\,\,\,0\,\ ;> 1,23<br /> 12,3<br /><pTabRuler:><ParaStyle:NormalParagraphStyle><pTabRuler:113.38582677165356\,Char\,\,\,0\ ,\ ;> 123<pTabRuler:><br /><br />b Here is the export of the same in CS3 that works in roundtripping:<br /><br /><ASCII-WIN><br /><Version:5><FeatureSet:InDesign-Roman><ColorTable:=<Black:COLOR:CMYK:Process:0,0,0,1>>< br /><DefineParaStyle:NormalParagraphStyle=<Nextstyle:NormalParagraphStyle>><br /><ParaStyle:NormalParagraphStyle><pTabRuler:100\,Char\,\\\,\,0\,\ ;>     1,23<0x000A> 12,3<br /><pTabRuler:><ParaStyle:NormalParagraphStyle><pTabRuler:100\,Char\,\\\,\,0\,\;> 123<pTabRuler:><br /><br />Note : tab align on comma is the way it should be in continental europe for displaying prices for example.<br /><br />Any hint would be very appreciated.<br /><br />Emmanuel

    We have a problem generating tabs aligned on comma with tagged text in CS2.<br />It works for other characters (like dot for example). Any attempt until now leads to an Indesign CS2 crash at import.<br /><br />The problem seems to be that the comma is also the separator for the parameters of the pTabRuler tag.<br /><br />In order to find a suitable syntax we have tried the following (without success) :<br />1) use the syntax from the documentation (tagged text user guide)<br />2) do some roundtripping (ie export and place the same tagged text. This works in CS3, but the CS3 syntax is version 5 while CS2 is version 4)<br />3) use an hexa definition of the comma <0x002C> similar to the "Indesign tags for special characters<br />4) upgrade to the last CS2 update (4.0.5)<br /><br />Of course one could say we just have to upgrade to CS3 and case is solved.<br />As we have a lot of scripting to convert between CS2 and CS3, we had like to know first if there is a solution for CS2.<br /><br />b Here is a sample of the tagged text we cannot import in CS2:<br /><br /><ASCII-WIN><br /><Version:4><FeatureSet:InDesign-Roman><ColorTable:=<Black:COLOR:CMYK:Process:0,0,0,1>>< br /><DefineParaStyle:NormalParagraphStyle=<Nextstyle:NormalParagraphStyle>><br /><ParaStyle:NormalParagraphStyle><pTabRuler:113.38582677165356\,Char\,\,\,0\,\ ;> 1,23<br /> 12,3<br /><pTabRuler:><ParaStyle:NormalParagraphStyle><pTabRuler:113.38582677165356\,Char\,\,\,0\ ,\ ;> 123<pTabRuler:><br /><br />b Here is the export of the same in CS3 that works in roundtripping:<br /><br /><ASCII-WIN><br /><Version:5><FeatureSet:InDesign-Roman><ColorTable:=<Black:COLOR:CMYK:Process:0,0,0,1>>< br /><DefineParaStyle:NormalParagraphStyle=<Nextstyle:NormalParagraphStyle>><br /><ParaStyle:NormalParagraphStyle><pTabRuler:100\,Char\,\\\,\,0\,\ ;>     1,23<0x000A> 12,3<br /><pTabRuler:><ParaStyle:NormalParagraphStyle><pTabRuler:100\,Char\,\\\,\,0\,\;> 123<pTabRuler:><br /><br />Note : tab align on comma is the way it should be in continental europe for displaying prices for example.<br /><br />Any hint would be very appreciated.<br /><br />Emmanuel

  • Is it possible to add new columns with format "Text" once a table is linked to a form

    Is it possible to add new columns with format "Text" once a table is linked to a form in Numbers for iPhone or is it impossible and thus a serious bug?(Rating stars and numeric vales seem to work.)
    Those bugs happen both for new speadsheets as well as existing onces, like the demo. When you are in the form only the numeric keyboard shows up.
    Pat from the Apple Store Rosenstrasse/Germany approved that it looks like a Bug during the Numbers Workshop I was in: It is not possible to add new columns with format "Text". I reported the error for Version 1.4 but there is no update nor do I get statement of understanding the issue.

    Hi Knochenhort,
    I see what you are talking about now. Without knowing how the program actually works, I think this is what's going on:
    When you add a new column to an already existing table (with already existing formats), the new cells come already formatted like the previous column. So when you add a column to the end of the demo table, the cells are already formatted like stars, and when you add a column to the beginning, they're already formatted like number.
    I think this is why it's different when if you add columns to a table with blank (unformatted) columns. In that case, the new cells aren't already "tainted" with a set format, so you can change to text format without issue.
    It seems like the problem is that you can't format cells that are already formatted as "number" as "text" format (even if it doesn't look like they are, because they are blank). IMO, this is a bug! This is why you don't see this issue when adding columns to a new table, because the new cells don't already come with a format.
    To workaround, you can highlight the body cells after adding the new column, and delete the cells. This will "clear" the formatting, so you can then go in the inspector, format them as text, and the correct keyboard will pop up.
    Hope that helps!

  • Details: Numbers not translating an Excel document with column headings where the text is rotated counter clockwise 90 degrees with-in the cell.  Can you tell me how I can rotate the contents with-in a cell?

    Details: Numbers not translating an Excel document with column headings where the text is rotated counter clockwise 90 degrees with-in the cell.  Can you tell me how I can rotate the contents with-in a cell?

    Numbers does not have rotated text within cells.  You can place a text box over the cell that has rotated text but you cannot rotate text within a cell.

Maybe you are looking for