Display TextBox Merging two columns

hi
In a Form i want to display textbox merging two columns
when i increading the width of textbox , elements(textbox,selectlist) in the column 2 move right side

Edit your item and go to
Displayed > ColSpan
and increase it to two or three...
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://apex.oracle.com/pls/otn/f?p=31517:1
-------------------------------------------------------------------

Similar Messages

  • How to merge two columns in WAD(column chart)

    Dear Experts,
    Please provide your valuable suggestion to get a merge two columns in one column WAD column chart.
    Example: we are having 3 fields (Budgeted value, Actual budgeted value & non budgeted value).
    In the chart to be shown, budgeted value in one column, remaining two to be merged in one column
    In below sample image Actual(Volume) column is having twe fields (Budgeted SKU value & Non budgeted SKU),
    please provide solution to get same in SAP BI/BW WAD.
    Thanks & Regards,
    Sudarsan Reddy.

    Hi..,
      With in the internal table structure you can declare one more field like NAME(30).
    And concate nate first name and last name into that NAME field of internal table and modify the internal table
    Now display this field..
    Thanks,
    Naveen.I

  • Merging two columns with muliple rows in Numbers '09

    I am trying to merge two columns each with 100 rows and related data. Column one is the street address and column two have office numbers. The final result would be one column with 100 rows with address and office numbers.
    Ed Carreon

    sanpanza wrote:
    I am trying to merge two columns each with 100 rows and related data. Column one is the street address and column two have office numbers. The final result would be one column with 100 rows with address and office numbers.
    Ed Carreon
    Hi Ed,
    Use the CONCATENATE() function.
    Street address in column D, Office number in Column E
    100 Smith ST            212
    Formula: =CONCATENATE(E," ",D)
    Result:
    212 100 Smith ST
    Note the formula has three arguments, the reference to column E, a text literal (" ") containing a single space, and a reference to column D.
    Regards,
    Barry

  • How to merge two columns in csv file using vbscript?

    How i can merge two column in csv file using vbscript or powershell?
    1  , 2  , 3  , 4  , 5
    1  , 23 ,  4 ,  5
    thanks

    Here are two examples
    http://msdn.microsoft.com/en-us/library/ms191250.aspx
    calulated
    http://msdn.microsoft.com/en-us/library/ms191250.aspx
    Gary Newman MCSE, MCT, CCNA, MCSD, MCPD, MCDBA, MCAD, MCSA, MCTS Developer and Administrator On SharePoint 2013 SharePoint Practice Manager for AmeriTeach Denver, CO.

  • Merging Two Columns in ALV

    Hi Experts,
    I have a requirement, and I need to merge the the two columns in ALV. How can I do this?
    Points will be rewarded for helpful answers.
    Thanks in advance...

    Hi Salem
    Check this sample code
    LOOP AT itab.
    CONCATENATE itab-amount itab-currency INTO itab-combined.
    MODIFY itab.
    ENDLOOP.
    You will probably need to embellish just that concat command as all fields will be treated as TYPE C.
    Then inhibit the display of the original fields ‘amount’ and ‘currency’ by setting NO_OUT=’X in the fieldcat loop (or other method).
    There may be a FM to merge/format amounts and currency but I couldn’t find one on quick search.
    The option 'USING EDIT MASK' from WRITE command is also available in ALV structure IT_FIELDCAT.
    I have only used it in write and for simple stuff, but it may have some options for you.
    Check '==conv' for output conversion routine...
    Reward all helpfull answers
    Regards
    Pavan

  • Gallery Display Thumbnails in Two Columns

    Thanks to Mr. Booth for his excellent tutorial on setting up
    a web gallery. This really gave me a great foundation.
    My question has to do with controlling how thumbnail images
    are displayed on the page. I would like to display two (or three)
    columns ot thumbs along with a text title for each. If I were
    programming this in C++, I would setup a "for loop" and simply
    display the first column with an index of i/2, and the second
    column with an index of i/2 + 1, but I can't seem to figure out how
    to achieve a similar effect within the confines of HTML.
    Here is my code snippet. What I get is two columns of
    identical thumbs. How would you change this to make thumbs 1,3,5...
    appear in column one, and thumbs 2,4,6... appear in column two? It
    seemed to me that using a table was a good way to set this up, but
    I'm very new to web programming.
    <div class="NewThumbClass" spry:region="dsGallery" >
    <table>
    <tr spry:repeat="dsGallery" >
    <td> {title} <br />
    <img src ="thumbnails/{path}" /></td>
    <td> {title}<br />
    <img src ="thumbnails/{path}" /></td>
    </tr>
    </table>
    </div>
    Note that {title} and {path} are gotten from the XML database
    file. Thanks in advance for your help.
    Mike Whalen

    Hi
    No! It's not possible, but you can try to create an your own heading in TOP-OF-PAGE to write the first heading line, the second one will be the std line .
    Max

  • Merge two column value in single column

    Team,
    I have a requirement where in I need to merge 2 column values in a single column.
    ex. I have Percent_complete column in my table. and my table has only one record.
    I need to query such that I need to store the values of percent_complete and (100- percent_complete) values in a single column.
    ex
    Percent complete has 30 value.
    I need to select 30 and 70(100-30) both in a single column.
    Thanks,

    SQL> select  *
      2    from  tbl
      3  /
    PERCENT_COMPLETE
                  30
    SQL> select  abs(grouping(1) * 100 - max(percent_complete)) percent_complete
      2    from  tbl
      3    group by rollup(1)
      4  /
    PERCENT_COMPLETE
                  30
                  70
    SQL> select  nvl(percent_complete,100 - max(percent_complete)) percent_complete
      2    from  tbl
      3    group by rollup(percent_complete)
      4  /
    PERCENT_COMPLETE
                  30
                  70
    SQL>
    SY.

  • Merge Two Columns in a Single Column

    Dear,
    Inputs
    Table1 |
    Col1 (Number) |
    1 |
    2 |
    3 |
    4 |
    5 |
    6 |
    and table 2
    Table2 |
    Col1 (Number) |
    7 |
    8 |
    9 |
    10 |
    11 |
    12 |
    No relation between the two tables
    I want to write a select statement that will result
    Column
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    No sorting is required, I just need to have all the values listed in a single column... How can I do?
    Thanks in Advance.

    If there is dup values between the two tables and you want get only unique, use UNION. If not UNION ALL as already stated.
    Nicolas.

  • Merge two columns of url/text and locator numbers

    Want to merge a url - http://www.vimeo.com to a numbered vimeo film locator for the 'screeners sheet' for a film contest.
    The current set up is: Column A - film title; Column B will be the Category; Column C - the url of vimeo with a / at the end to accept...Column D - the vimeo film locator number; Columns E-I will be the rating topics (originality, technical accuracy etc); Column J will contain the sum of the screeners ratings from Columns E-I.
    There is no need to have totals at the bottom of columns just at the end of the rows. We have about 1000 films being rated for the Contest to win over $30k in Awards (sweet!).  Ultimately this list will be divided into Categories then 'shared' with the individual screening teams to view remotely through this spread sheet and rate the film work.
    Oh the coup de gras is the merge needs to keep it as an active link to Vimeo (which doesn't happen in the =Concatenate(C,D) formula. The lyper link stays active when we manually input each letter/number - but for 1,000 films - that's a yikes amount of work. Gotta be an easier way!
    Thanks for your help!
    Possible Futures Film Contest
    Programming Team
    May 29

    Might need the mystics as well!
    I'm having difficulty getting Numbers to recognize URLs to begin with, not just when they've been put together with the concatenation function (or the concatenation operator). I do have the feature turned on, but the recognition has been sporadic, to say the least.
    Assuming you have that sorted out, this might be a profitable line of enquiry:
    After joining the items using concatenation, select the cells now containing the full URL and Copy, then go to the Edit menu and choose Paste Values.
    Can't test it myself, for the reasons given above, but the labor cost of the home test isn't unendurable.
    Regards,
    Barry

  • Displaying text in two columns in SAP Script

    Moved to correct forum.  Please use a meaningful subject in future - I've edited it for you this time.
    Hello Everybody,
    I have a text to be displayed in Scripts. I want to split the text into 2 columns.
    Like in news paper.
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    aaaaaaaaaaaaaaaa   aaaaaaaaaaaaaaaaaaa
    Like this.
    Can someone tell me how to do that?
    Thanks,
    Edited by: Matt on Mar 11, 2009 4:31 PM

    As far as I believe....
    Always text flows out of the main window if it is completely filled.
    So, create an instance of the main window.
    Go to Page windows->Select the main window->Edit->Create
    You will get one more main window and that will be of type with the name Main01
    Go to Screen painter and adjust the window in the way that you required.
    Just start printing the text by writing the code in main00.
    Automatically main01 will have the same code assgined(you can check if you want) and the data gets displayed once the main 00 window is filled.
    Hope it helps....

  • Search keyword display dropdown list two columns

    Sheet1:
    Sheet2:
    Question: Is it possible to create a searchable Dropdown list in Sheet1 A6 that displays a list of combined Sheet2’s ColA+ColB. And the ColB of the selected row will be the value of Sheet1
    B2.
    i.e. If type in a keyword ‘apple’ on Sheet1 A6, Sheet1 A6 cell will have a dropdown list of Sheet2 A2-B5. Then the user will select a row from this dropdown and Sheet1 B2 will display the price (ColB) of the selected value.
    Please let me know if this makes sense. Thanks.

    Some questions.
    Why is the price going on a different row?
    Do want a drop down at A6 and you will be selecting one item after another from this same place or do you want more DropDowns on the following rows.
    The price is inserted at cell B2. Will the price always be in cell B2 or the next blank cell in that column?
    What sort of DropDown are you looking for? Can we use a ComboBox or do you specifically want a Data Validation DropDown. (Can be done with a ComboBox but not sure how this could be done with Data Validation.)
    Regards, OssieMac

  • MERGE TWO COLUMNS ?

    hi i queried on my database as follow,
    <pre>
    SELECT
    C.LKP_ID ID,D.LKP_ID AS ID,C.ROOT_CAUSE_CODE AS CODE,D.PART_DISPOSTN_DESC AS CODE
    FROM
    SELECT DISTINCT
    A.LKP_ID AS LKP_ID
    ,D.PART_CNDTN_CD as ROOT_CAUSE_CODE
    ,C.LKP_NM as ROOT_CAUSE_DESC
    ,A.CREATED_DT AS OD_CREATED_DATE
    ,A.UPDATED_DT AS OD_LAST_UPDATED_DATE
    ,CURRENT_TIMESTAMP AS CREATED_DATE
    ,CURRENT_TIMESTAMP AS LAST_UPDATED_DATE
    FROM FWOWNER.CLM_LKP_VALUE A, FWOWNER.CLM_LKP_USAGE B , FWOWNER.CLM_LKP_VALUE_LANG C,
    IWOWNER.WC_CLM_SRVC_PART D
    WHERE B.LKP_USED_AS IN ('RR_CAUSAL_PART_CNDTN_CODE')
    AND A.LKP_REF BETWEEN B.LKP_REF
    AND B.LKP_REF + '.99999' and A.LKP_ID = C.LKP_ID
    AND C.LANG_CD = 'ENG_USA'
    AND A.LKP_LVL = 3
    and D.PART_CNDTN_CD = A.LKP_VALUE
    )C
    CROSS JOIN
    SELECT DISTINCT
    A.LKP_ID AS LKP_ID
    ,D.PART_DISPOSTN_CD as PART_DISPOSTN_CODE
    ,C.LKP_NM as PART_DISPOSTN_DESC
    ,A.CREATED_DT AS OD_CREATED_DATE
    ,A.UPDATED_DT AS OD_LAST_UPDATED_DATE
    ,CURRENT_TIMESTAMP AS CREATED_DATE
    ,CURRENT_TIMESTAMP AS LAST_UPDATED_DATE
    FROM FWOWNER.CLM_LKP_VALUE A, FWOWNER.CLM_LKP_USAGE B , FWOWNER.CLM_LKP_VALUE_LANG C,
    IWOWNER.WC_CLM_SRVC_PART D
    WHERE B.LKP_USED_AS IN ('rr_parts_disposition')
    AND A.LKP_REF BETWEEN B.LKP_REF
    AND B.LKP_REF + '.99999' and A.LKP_ID = C.LKP_ID
    AND C.LANG_CD = 'ENG_USA'
    AND A.LKP_LVL = 3
    and D.PART_DISPOSTN_CD = A.LKP_VALUE
    )D
    </pre>
    which resulted with :
    <pre>
    ID ID CODE CODE
    25768 28225 CP01 OVERHAULED
    25771 28225 CP04 OVERHAULED
    25774 28225 CP07 OVERHAULED
    25777 28225 CP10 OVERHAULED
    25778 28225 CP11 OVERHAULED
    25779 28225 CP12 OVERHAULED
    25780 28225 CP13 OVERHAULED
    25781 28225 CP14 OVERHAULED
    25783 28225 CP16 OVERHAULED
    25785 28225 CP18 OVERHAULED
    25786 28225 CP19 OVERHAULED
    25788 28225 CP21 OVERHAULED
    25789 28225 CP22 OVERHAULED
    25790 28225 CP23 OVERHAULED
    25793 28225 CP26 OVERHAULED
    25795 28225 CP28 OVERHAULED
    25796 28225 CP29 OVERHAULED
    25797 28225 CP30 OVERHAULED
    25798 28225 CP31 OVERHAULED
    25799 28225 CP32 OVERHAULED
    20 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
    </pre>
    i need to Merge both ID's and Code which may yield 21 records, how to do this, please help me
    Regards
    Naren.

    Hi, Naren,
    Whenever you have a problem, it helps if you pst a little sample data (CREATE TABLE and INSERT statements, elevenat columns only) and the results you want from that data.
    I suspect you want to do something like this:
    SELECT  A.LKP_ID          AS ID
    ,     D.PART_CNDTN_CD          as CODE
    FROM     FWOWNER.CLM_LKP_VALUE          A
    ,     FWOWNER.CLM_LKP_USAGE          B
    ,     FWOWNER.CLM_LKP_VALUE_LANG      C
    ,     IWOWNER.WC_CLM_SRVC_PART     D
    WHERE     B.LKP_USED_AS          IN ( 'RR_CAUSAL_PART_CNDTN_CODE'
                           , 'rr_parts_disposition'
    AND     A.LKP_REF          BETWEEN     B.LKP_REF
                        AND     B.LKP_REF + .99999     -- No quotes
    and     A.LKP_ID          = C.LKP_ID
    AND     C.LANG_CD          = 'ENG_USA'
    AND     A.LKP_LVL          = 3
    and      A.LKP_VALUE          = CASE
                             WHEN  B.LKP_USED_AS     IN ( 'RR_CAUSAL_PART_CNDTN_CODE')
                             THEN  D.PART_CNDTN_CD
                             WHEN  B.LKP_USED_AS     IN ('rr_parts_disposition')
                             THEN  D.PART_DISPOSTN_CD
                          END
    ;or maybe a UNION instead of a join.
    Edited by: Frank Kulash on Feb 9, 2010 9:08 AM
    Revised last condition.

  • Merging two columns

    Hi All,
    I have 1 tables. Scripts and some values are given below.
    create table T1(s_id varchar2(30), rs_id varchar2(30));
    insert into T1(s_id,rs_id ) values (s1,rs1 );
    insert into T1(s_id,rs_id ) values (s1,rs2 );
    insert into T1(s_id,rs_id ) values (s1,rs3 );
    insert into T1(s_id,rs_id ) values (s1,rs4 );
    The value s1 will be repeated for all of the rs_id value.
    I want to make the output like :
    s1
    rs1
    rs2
    rs3
    rs4
    Can any body tell me how to proceed without using union or union all, may be by using Analytic function using single SQL statement.

    This?
    SQL> select decode(row_number() over(partition by s_id order by null),1,s_id,null) s_id,rs_id
      2  from t1;
    S_ID                           RS_ID
    s1                             rs1
                                   rs4
                                   rs3
                                   rs2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Vertical report with two columns

    I have table with picture. I can display common sql report(horizontal or vertical). Is it possible to display this to two columns (eshop).Two vertical columns (for example field of records 10x2).
    Message was edited by:
    user542927

    Hi,
    There are probably a number of ways that you can handle this, but the underlying principle for all of these would be that you need to have 2 reports. The first report would contain the first ten records and the second report would contain the next ten.
    The way to do that would be to get the ROW_NUMBER() value for each line and, in the query defintion for each report, you would have a WHERE clause that restricted the results based on this value. The best way to do this would be to create a view and base the reports on this view. The view definition would include:
    ROW_NUMBER() OVER (ORDER BY xxxx) AS ROW_NUMBER
    where xxxx is the same order definition as the main ORDER BY clause. Each row will then get a ROW_NUMBER value that matches it's position in the query resultset.
    Your first report would then have a WHERE clause of:
    WHERE ROW_NUMBER < 11
    the second report would have:
    WHERE ROW_NUMBER BETWEEN 11 AND 20
    The final step would be styling/positioning the reports. The first would probably be in Column 1 in the region and the second in Column 2. You would almost certainly have to adjust the styling and/or positioning using a style attribute in the region/report definitions.
    Regards
    Andy

  • How best to display a two column menu in Flash 8?

    I have a flash 8 template and i am using Macromedia Flash Professional 8. I want to create a menu in a scrollable text box, which has two columns exactly aligned like so:
    Lamb                                                   £2.30                       Chicken                                                      £2.30                                                
    Minced lamb with onions, herbs,                                           Minced chicken with an mixture of
    in egg yolk and shallow fried.                                                green chillies cooked over a charcoal grill on
    Kebab                                                  £2.80                       Lamb                                                         £2.40
    A mix of chicken kebab, seekh kebab and                             Minced lamb mixed with gram flour, spices, green
    shami kebab.  Served on a sizzler.                                        chillies and herbs then deep fried.
    However, when i test the movie there is no formatting and the text is misaligned. I already have the above text (and there is alot of it) in the exact format, in a word file, so i could copy and paste the text instead of writing it out all over again.
    I have been advised that it is better to use the Datagrid component to display the above text in a table?
    My question is, how can i use the Datagrid component to display the text aligned exactly as above? Do i need to create html tables and then get the datagrid component to call this html file, xml file or actionscript? I am not familiar with xml or actionscript.
    Please can someone help?
    Thank you.

    Hi Ned. Apologies for late reply. Been away.
    Anyway, i have created an image of what it is i need. Please see the image below - menu.gif
    Not sure what the easiest way is to create such a two column menu in Flash because the tab key on the keyboard does not work in a scrollable textbox only the space bar. And using the space bar does not align the text correctly.
    However, i do have a html file which i created using html tables. Is there a way to import the html file into a scrollable textbox in flash? The raw html code example is a little different as i have included the borders, but the idea is the same - a two-column scrollable menu.
    Any help would be greatly appreciated.
    <html>
      <head>
        <title></title>
      </head>
      <body>
        <table width="50%" border="1">
          <tr>
            <td>
              <table width="100%" border="1" cellpadding="2"
              cellspacing="0">
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
                <tr>
                  <td>Other</td>
                  <td>10%</td>
                </tr>
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
                <tr>
                  <td>Other</td>
                  <td>10%</td>
                </tr>
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
                <tr>
                  <td>Other</td>
                  <td>10%</td>
                </tr>
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
              </table>
            </td>
            <td>
              <table width="100%" border="1" cellpadding="2"
              cellspacing="0">
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
                <tr>
                  <td>Other</td>
                  <td>10%</td>
                </tr>
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
                <tr>
                  <td>Other</td>
                  <td>10%</td>
                </tr>
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
                <tr>
                  <td>Other</td>
                  <td>10%</td>
                </tr>
                <tr>
                  <td>Apples</td>
                  <td>44%</td>
                </tr>
                <tr>
                  <td>Bananas</td>
                  <td>23%</td>
                </tr>
                <tr>
                  <td>Oranges</td>
                  <td>13%</td>
                </tr>
              </table>
            </td>
          </tr>
        </table>
      </body>
    </html>

Maybe you are looking for

  • How do I minimise the file size of a photo?

    I am trying to find a way to miimize the file size of a photo so I can use s a avicon. Does anyone know how to do this?

  • ERROR GETTING WHEN CONFIGURING PSADMIN

    HI GURUS, i am configuring in windows environment. i have given following Quick-configure menu -- domain: PATPS Features Settings ========== ========== 1) Pub/Sub Servers : No 15) DBNAME :[PTSYS] 2) Quick Server : No 16) DBTYPE :[ORACLE] 3) Query Ser

  • Need more free space

    My kids are playing Sims 2 and occasionally the game will not load because the Imac says that we need more available free space. Does anyone know how to remedy this? Also, would increasing the amount of Virtual Memory resolve this? If so, how do I do

  • A Calendar event that is to repeat N times sometimes need to be specified as repeating N 1 times

    Under Mountain Lion, iCal's successor, Calendar, doesn't always handle repeating events correctly. If I want an event to repeat every week for N weeks, sometimes I need merely fill in Stop After N Times. But sometimes I have to fill in Stop After N+!

  • Export 16:9 for web

    i posted this message in the Compressor forum, but didn't get much of a response. I am hoping the FCP experts could give some good advice. any help would be appreciated. http://discussions.apple.com/thread.jspa?messageID=1340567&#1340567 thanks.