Two column per row woes....

Hi All
have just spent the last couple of hours trying to do something which I was hoping would be fairly simple - the only thing I have figured out is that it is not simple.
Heres my problem, I have data structured like so
<HORSE>
<HORSE_NAME>Chris One</HORSE_NAME>
</HORSE>
<HORSE>
<HORSE_NAME>Chris Two</HORSE_NAME>
</HORSE>
<HORSE>
<HORSE_NAME>Chris Three</HORSE_NAME>
</HORSE>
<HORSE>
<HORSE_NAME>Chris Four</HORSE_NAME>
</HORSE>
I want the data to come out in RTF data like this
Chris One Chris Two
Chris Three Chris Four
I really want to avoid changing the data file.
So I don't come across as a lazy boy I have looked into a couple of things....
Tims blog on Rows and Columns - this is the direction I need to go but I don't get how to force a new line - I tried it and got all records on one line.
I've read various forum posts a blog by another guy doing invoice stuff - which seems over complicated for what I need.
Tim - any chance you could do a follow up to your rows and columns blog??
I'm running latest BIP,
my data can have x amount of records and may be an odd or even amount of records.
Thanks in advance

Hi Tim / Vetsrini
I always think its nice to post a follow up to how people got on so here goes.
Vets - I liked your idea of only having one loop so I gave it a go, unfortunately it didn't work. If I only had one horse it would not display anything, and if there were an odd number the last line would populate the right hand side of the table instead of the left.
I like the idea of this preceding-sibbling command but just wonder whether it is really clever enough - in that what can precede one record? I think I'll do some research on it when I get a little bit of time as I do see the potential.
Tim - Must admit that this solution was almost so simple I felt like slapping myself, I guess thats what happens when you trawl through BIP docs for to long ;)
Anyway for anybody else reading this in the future Tims method works fine, a nice comibnation of simpe mathematics and common sense.
Thanks
Chris

Similar Messages

  • Interactive Report - Icon View - Dynamic Columns per Rows ?

    Hi all,
    We use the icon view functionnality in Interactive Report.
    Is there a way to display the 'columns per row' attribute as an application item and set it dynamical via PL/SQL ?
    Any suggestions?
    Thanks in advance for advices,
    Regards,
    Grégory

    Hi,
    Apex 4.0 interactive reports and images (Scott's thread)
    Have some useful information and pointers to the solution you are looking for.
    I hope this help.
    Thank you,
    Ranish

  • Calendar --  How to view "to do list" in two columns per day in Month view?

    In OSX 10.6.8, my old Calendar would automatically go into two column view to show all my "to do" items, but 10.8.5 Calendar isn't doing this when I put over 12-14 items and just says "2 more..." instead of going to two columns and truncating them.  -- Is there a way to turn this 2x column view on?  or another way to show all of my to items?
    Any ideas/help appreciated.  TIA

    the "Employee Directory" shows you the photos by default. Should not be that hard to add an url via personalizations that points to that directory.
    good luck.

  • Interactive Reports: Display data on two lines per row?

    Is it somehow possible to display a single row across two lines in an interactive report?
    Something like this:
    Row1 Field 1, Row1 Field 2, Row1 Field 3
    Row1 Field 4 (spanning across the other fields)
    Row2 Field 1, Row2 Field 2, Row2 Field 3
    Row2 Field 4 (spanning across the other fields)
    Row3 Field 1, Row3 Field 2, Row3 Field 3
    Row3 Field 4 (spanning across the other fields)
    ... etc
    For example, I have a "Remarks" column that would look better on its own line, rather than being squeezed into the same row with the other columns.
    I realize that this layout might not be possible out-of-the-box, but I was thinking that perhaps some javascript/jQuery trick could be used. Unfortunately, my jQuery-fu is not strong yet, so I'm asking for help...
    (I also know that this type of layout is possible using a classic report with a custom template, but I would prefer to use the Interactive Report if at all possible.)
    - Morten

    Hi,
    Try this to page HTML header
    <style>
    .apexir_WORKSHEET_DATA td{white-space:nowrap!important;}
    </style>At least it work with firefox 3.5 for me
    Br, Jari

  • Mild challenge -pivoting *multiple* columns per row using only SQL

    Hello All,
    I'm in the process of learning the various pivoting techniques available
    in SQL, and I am becoming more familiar with the decode,function,group-by
    technique seen in many examples on these forums. However, I've got a case
    where I need to pivot out 3 different columns for 3 rows of data where the
    value of a different column is driving whether or not those columns are pivoted.
    I know that last sentence was as clear as mud so I'll show you/provide the simple
    scripts and data, and then I'll elaborate a little more beneath.
    create table temp_timeline (
    mkt_id varchar2(10),
    event_id number(8),
    event_type varchar2(3),
    mod_due_date date,
    cur_due_date date,
    act_due_date date
    insert into temp_timeline values('DSIM6',51,'S1','NOV-13-06','NOV-13-06',NULL);
    insert into temp_timeline values('DSIM6',51,'S2','DEC-20-06','DEC-20-06',NULL);
    insert into temp_timeline values('DSIM6',51,'S3','JAN-17-07','JAN-17-07',NULL);
    insert into temp_timeline values('DSIM6',51,'S4','FEB-14-07','FEB-14-07',NULL);
    commit;
    select * from temp_timeline;
    The "normal" output (formatted with period-separated fields) is:
    DSIM6.51.S1.NOV-13-06.NOV-13-06.NULL
    DSIM6.51.S2.DEC-20-06.DEC-20-06.NULL
    DSIM6.51.S3.JAN-17-07.JAN-17-07.NULL
    DSIM6.51.S4.FEB-14-07.FEB-14-07.NULL
    The DESIRED 1-row output (formatted with period-separated fields) is:
    DSIM6.51.NOV-13-06.NOV-13-06.NULL.DEC-20-06.DEC-20-06.NULL.JAN-17-07.JAN-17-07.NULL.FEB-14-07.FEB-14-07.NULL
    So, the first 2 columns in the table have the same data, and the third column
    makes the row unique (they could all have the same/similar dates).
    If this table only consisted of the first 3 columns then many of the examples seen
    on this forum would work well (grouping by the first 2 rows and pivoting out
    the "event_type" columns containing (S1,S2,S3,S4) etc.
    But, in my case, I need to discard the event_type column and pivot out the
    3 columns of date data onto the first row (for each different event_type).
    So the 3 Dates associated with the "S2" column would go to the first row, and the
    3 dates associated with the "S3" column would also go to the first row (and so on).
    The 3 dates need to be 3 distinct columns when they are
    pivoted out (not concatenated to each other and pivoted as one column).
    Given this, I will need to pivot out a total of 12 different columns for each distinct
    (mkt_id, event_id) pair.
    For the time being I have accomplished this with a union, but am trying to expand
    my abilities with other sql methods. I've seen some very elegant solutions on this
    forum so will be interested to see what others can come up with for this solution.
    Thanks in advance for any comments you may provide.

    Just DECODE based on the event type, which will generate your 12 columns.
    SELECT mkt_id, event_id,
           MAX(DECODE(event_type, 'S1', mod_due_date, NULL)) s1_mod_due,
           MAX(DECODE(event_type, 'S1', cur_due_date, NULL)) s1_cur_due,
           MAX(DECODE(event_type, 'S1', act_due_date, NULL)) s1_act_due,
           MAX(DECODE(event_type, 'S2', mod_due_date, NULL)) s2_mod_due,
           MAX(DECODE(event_type, 'S2', cur_due_date, NULL)) s2_cur_due,
           MAX(DECODE(event_type, 'S2', act_due_date, NULL)) s2_act_due,
           MAX(DECODE(event_type, 'S3', mod_due_date, NULL)) s3_mod_due,
           MAX(DECODE(event_type, 'S3', cur_due_date, NULL)) s3_cur_due,
           MAX(DECODE(event_type, 'S3', act_due_date, NULL)) s3_act_due,
           MAX(DECODE(event_type, 'S4', mod_due_date, NULL)) s4_mod_due,
           MAX(DECODE(event_type, 'S4', cur_due_date, NULL)) s4_cur_due,
           MAX(DECODE(event_type, 'S4', act_due_date, NULL)) s4_act_due
    FROM temp_timeline
    GROUP BY mkt_id, event_idTested, because you supplied create table and insert statements, thank you.
    John

  • Get the latest date from 2 date columns per row

    I have a table that contains following columns:
    NAME
    DATE1
    DATE2
    From each row, I want to select the value for name and the latest date of DATE1 or DATE2.
    So, if this table contained data below:
    NAME DATE1 DATE2
    A 01/01/2008 01/01/2009
    B 12/01/2008 01/01/2008
    C 01/01/2008 12/31/2008
    I want a SQL script that returns
    A 01/01/2009 (value of DATE2)
    B 12/01/2008 (value of DATE1)
    C 12/31/2008 (value of DATE2)
    Please let me know if you happen to know the SQL command for accomplishing this. Thank you.

    Use GREATEST function.
    Regards.
    Vidya

  • Sys_refcursor from a table variable with columns per row not fixed

    i am creating a crosstab aggregation report where the number of columns in a table is determined at runtime from the dataset.
    so, i have:
    type strArray is table of varchar2(32767);
    type strArray2 is table of strArray index by pls_integer;
    i want to return a sys_refcursor (created from a strArray2 type variable) so a BIRT .rptdesign file can use it.
    sqldeveloper complains table not found when i do open for on the sys_refcursor.
    i cannot do a table of user defined record type because the number of columns depends on the dataset and therefore not fixed.
    how to get the sys_refcursor which upstream api can use ?

    Not exactly sure what you want to do and why... Keep in mind that pulling data from the SQL engine into the PL/SQL engine (or into external code lke Java) and processing it there, can never be as fast or scale as well as crunching that data in the SQL engine instead. So where processing can be done in the SQL engine, do it there.
    As for a 2D array definition and SQL projection, you can have a look at something like the following. Not sure if this is the approach you have in mind though. (note: the implicit cursor used could very easily be exposed to an external client via a ref cursor interface):
    SQL> --// 1 dimensional array definition
    SQL> create or replace type T1D is table of varchar2(4000);
      2  /
    Type created.
    SQL> --// 2 dimensional array definition
    SQL> create or replace type T2D is table of T1D;
      2  /
    Type created.
    SQL>
    SQL> declare
      2          arr2D   T2D;
      3  begin
      4          select
      5                  T1D( object_id, object_type, object_name )
      6                          bulk collect into
      7                  arr2D
      8          from    user_objects;
      9 
    10          for x in 1..2   --// just showing the 1st 2 elements and not arr2D.Count
    11          loop
    12                  for y in 1..arr2D(x).Count
    13                  loop
    14                          DBMS_OUTPUT.put_line( 'x='||x||' y='||y||' value='||arr2D(x)(y) );
    15                  end loop;
    16          end loop;
    17  end;
    18  /
    x=1 y=1 value=296403
    x=1 y=2 value=PACKAGE
    x=1 y=3 value=SYSLIB
    x=2 y=1 value=296404
    x=2 y=2 value=PACKAGE BODY
    x=2 y=3 value=SYSLIB
    PL/SQL procedure successfully completed.
    SQL>

  • Need help with query for converting columns to rows

    Hello,
    I know this is a very common question asked in the forum. I have searched regading this, i did find some threads, but i was not able to achieve what i require from the answers posted. So anybody please help me.
    I have a table which is having multiple columns as follows:
    Insert into table_1 (X,Y,Z,A,B,C,D,E,F,G,H,I) values (0,0,2,0,0,1,3,0,0,0,0,0);I want to convert the result into a two column, multiple rows i.e., I want the result as follows:
    Col1 Col2
    X      0
    Y     0
    Z      2
    A     0
    B     0
    C     1
    D     3
    E     0
    F     0
    G     0
    H     0
    I      0Please anybody help me in writing the query for this..

    Is this what you are expecting:
    SQL> WITH T AS
      2  (
      3  SELECT 0 X, 0 Y, 2 Z, 0 A, 0 B, 1 C, 3 D, 0 E, 0 F, 0 G, 0 H, 0 I FROM DUAL
      4  )
      5  SELECT  'X' col1, X col2 FROM T
      6  UNION ALL
      7  SELECT  'Y' col1, Y col2 FROM T
      8  UNION ALL
      9  SELECT  'Z' col1, Z col2 FROM T
    10  UNION ALL
    11  SELECT  'A' col1, A col2 FROM T
    12  UNION ALL
    13  SELECT  'B' col1, B col2 FROM T
    14  UNION ALL
    15  SELECT  'C' col1, C col2 FROM T
    16  UNION ALL
    17  SELECT  'D' col1, D col2 FROM T
    18  UNION ALL
    19  SELECT  'E' col1, E col2 FROM T
    20  UNION ALL
    21  SELECT  'F' col1, F col2 FROM T
    22  UNION ALL
    23  SELECT  'G' col1, G col2 FROM T
    24  UNION ALL
    25  SELECT  'H' col1, H col2 FROM T
    26  UNION ALL
    27  SELECT  'I' col1, I col2 FROM T
    28  /
    C       COL2                                                                   
    X          0                                                                   
    Y          0                                                                   
    Z          2                                                                   
    A          0                                                                   
    B          0                                                                   
    C          1                                                                   
    D          3                                                                   
    E          0                                                                   
    F          0                                                                   
    G          0                                                                   
    H          0                                                                   
    C       COL2                                                                   
    I          0                                                                   
    12 rows selected.

  • Show Report In Two Columns

    Apex 3.2
    I have a report and it has 1 column and 22 rows.
    At the moment, I show the first 15 rows and then you must paginate.
    The report will not grow much, may be to 30 rows.
    Is there a way to display the first 15 rows in 1 column and the second in another column, side by side etc
    Gus

    GusC wrote:
    Apex 3.2
    I have a report and it has 1 column and 22 rows.
    At the moment, I show the first 15 rows and then you must paginate.
    The report will not grow much, may be to 30 rows.
    Is there a way to display the first 15 rows in 1 column and the second in another column, side by side etc
    This is a presentation problem so the correct place to solve it is in the presentation layer using CSS. CSS3 introduces multiple column layouts, but this feature is only supported in recent browser versions—in particular requiring IE10+ in standards mode, which I suspect will be a problem as (a) you're not likely to be using IE10, and (b) APEX 3.2 themes aren't HTML5 and won't trigger standards mode (and aren't likely to be fully compatible even if forced to).
    Nonetheless, I think it's a technique that's worth demonstrating (if only for me to get some experience of using it), before considering an alternative option using interleaved row ordering and CSS floats that might be of more immediate use to you.
    Start with a standard report using a basic query on the [OE]HR EMPLOYEES table:
    select
        first_name
      , last_name
      , phone_number
    from
        oehr_employees
    order by
        last_name
      , first_name
    The appropriate structure for a single column report with a predefined sort order is an ordered list, so we create a custom generic row report template, as a copy of the Standard report template with the following modifications:
    Before Rows
    <table cellpadding="0" border="0" cellspacing="0" id="report_#REGION_STATIC_ID#" class="pagination-container">
      #TOP_PAGINATION#
    </table>
    <ol class="single-value-list" #REPORT_ATTRIBUTES#>
    Before Each Row
    <li>
    Column Template 1
    #COLUMN_VALUE#
    After Each Row
    </li>
    After Rows
    </ul>
    <div class="t17CVS">#EXTERNAL_LINK##CSV_LINK#</div>
    <table cellpadding="0" border="0" cellspacing="0" class="pagination-container">
      #PAGINATION#
    </table>
    This report template is generic enough to be used in both solutions, and although it appears you don't need pagination in the solution, I've retained it to provide more flexibility and because it involves an interesting problem in creating balanced columns on the last page in the interleaved row order option.
    As the template only displays one column per row, and to exercise the column layout break properties, all of the table columns are hidden and we create a derived column that uses an HTML Expression containing some hCard microformat markup to make the list item content span 2 lines:
    <div class="vcard">
      <span class="fn n"><span class="given-name">#FIRST_NAME# <span class="family-name">#LAST_NAME#</span></span>
      <div class="tel">#PHONE_NUMBER#</div>
    </div>
    We can then implement some basic list/hCard formatting using CSS:
      Basic list/hCard formatting common to both CSS3 multi-column and interleaved rows/CSS float solutions
    ol {
      margin-left: 0;
      padding-left: 0;
      width: 44em;
      white-space: nowrap;
      list-style-type: square;
      ol li {
        margin: 0 0 0.5em 2em;
    .vcard .family-name {
      font-weight: 600;
      text-transform: uppercase;
    The CSS3 multi-column rules used in the first report region are pretty straightforward, although they have to take account of the current level of browser support by using vendor-specific properties where appropriate:
      CSS3 multi-column formatting
    .multi-col ol {
    /* Safari/Chrome/Opera */
      -webkit-column-count: 2;
      -webkit-column-gap: 0;
      /* Firefox */
      -moz-column-count: 2;
      -moz-column-gap: 0;
      /* IE10+ */
      column-count: 2;
      column-gap: 0;
      .multi-col ol li {
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        break-inside: avoid;
        /* Workaround for FF as break-inside doesn't work. */
        page-break-inside: avoid;
    For the interleaved row ordering workaround used in the second report, the query has to be modified to calculate the page each row will appear on, and the position in each column on the page it will occupy:
    with emps_ordered_unique as (
        select
    -- If you need distinct rows then just restrict them at the start
            distinct
            first_name
          , last_name
          , phone_number
          , row_number()
              over (
                order by last_name, first_name) row#
        from
            oehr_employees
        order by
            last_name
          , first_name)
      , emps_interleaved as (
          select
              first_name
            , last_name
            , phone_number
            , row#
              -- 30 is overall number of rows per page
            , ceil(row# / 30) page#
              -- 30 is overall number of rows per page; 15 maximum number of rows per column
            , mod(row# - 1, least(ceil(count(*) over (partition by ceil(row# / 30)) / 2), 15)) col_row#
          from
              emps_ordered_unique)
    select
        first_name
      , last_name
      , phone_number
    from
        emps_interleaved
    order by
        page#
      , col_row#
      , row#
    The trick here is to interleave the rows, with those that have the same position in each column appearing in pairs so that they can be laid out side-by-side using element widths and CSS floats.
    The CSS for this report is:
      Interleaved rows/CSS float formatting
    #interleaved .pagination-container {
      clear: both;
    #interleaved ol {
      #interleaved ol li {
        float: left;
        width: 20em;
    The drawback with the latter option is that although the list entries are visually ordered down and across the columns, they are not semantically ordered thus in the HTML markup, so any user perceiving the list without this CSS (for example via a screenreader, or a mobile device with an alternative style sheet) gets the list in a weird order. For that reason I probably wouldn't use this approach. At present I'd implement the CSS3 multi-column approach as a progressive enhancement for users with up-to-date browsers, and allow it to gracefully degrade to a basic 1-column list in legacy versions.

  • SSIS 2008 or 2012 Data Task: How to conditionally choose one of two flatfile columns on a per-row basis

    I searched the textbooks and searchable forum posts for something related to my question, but could not find it. I'm hoping when after I describe my question that it might sound familiar to someone.
    First, the context: another department using a black-box database product stopped use of one column and used a different column instead. However, the data in the flat-file export that I need to use for my own database must contain the entire
    table. If it was a clean binary switch, that would be great: I could split the rows into two groups based on date and deal with it that way. Instead, there was a period of overlap while users slowly got the hang of the practice.  This means that I have
    two columns where a row value is either in one column
    or the other.
    Now, the question: I currently use SSIS to import this flatfile into an SQL Server table and use a T-SQL script in an SQL Agent Job to handle the problem.
    However, I was hoping I could do this on the SSIS side while importing the data so that it appears into the SQL Server destination table nice and clean.
    This is a HIGHLY SIMPLIFIED view of my system, using dummy data and dummy names. The T-SQL script describes in essence my source and destination table and what I would like to do on the SSIS side. If a screenshot of my incomplete data tab will help, I can
    do it, but at this point I'm providing what I hope presents the background without presenting distractions.  
    Thank you for any hints or ideas.
    use Learning_Curve;
    go
    if OBJECT_ID('dbo.Relation_A','U') is not null
    drop table dbo.Relation_A;
    create table dbo.Relation_A (
    Rel_A_ID int primary key,
    Rel_A_Value varchar(20) not null,
    Rel_B_Value varchar(20) not null
    insert into dbo.Relation_A values (1,'Unknown','Measured'),(2,'Measured','N/A'),(3,'Unknown','Measured'),
    (4,'Measured','Unknown'),(5,'N/A','Measured'),(6,'Unknown','Measured');
    if OBJECT_ID('dbo.Relation_D','U') is not null
    drop table dbo.Relation_D;
    create table dbo.Relation_D (
    Rel_D_ID int primary key,
    Rel_D_Value varchar(20) not null
    insert into dbo.Relation_D
    select
    a.Rel_A_ID as Rel_D_ID,
    case
    when a.Rel_A_Value = 'N/A' or a.Rel_A_Value='Unknown'
    then a.Rel_B_Value
    else a.Rel_A_Value
    end as Rel_D_Value
    from dbo.Relation_A a;
    go

    You could have posted question in new thread.
    Anyway, you can achieve it by using below tasks shown in attached picture.
    - Merge Join will join by using first ID column
    - Derived Column will have below expressions
    [Column 1] == "" || ISNULL([Column 1]) ? [AnotherColumn 1] : [Column 1]
    [Column 2] == "" || ISNULL([Column 2]) ? [AnotherColumn 1] : [Column 2]
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • How to insert a local member in a column between two different nested row dimensions

    Hi Experts,
    We have a report which has two dimensions in rows with nesting. The dimensions are PROGRAMS and ACCOUNT.
    I have attached the layout of the report.
    We need to have a column for local member in between Col A and Col B, wherein we have to pull the long description of the program.
    We have long description of programs maintained in a property of PROGRAM dimension
    So if we can insert a column between Col A and Col B, we can have a local member in it with formula "EPMMemberProperty" refering to Col A
    Currently we are are not able to insert a local member in between Col A and Col B in EPM 10 SP 14 version because its not a data range
    I remember we used to do it in BPC 7.5 using expansion ranges to insert a blank column. So I believe similiar thing can be done in EPM 10
    I have tried the option of VBA macro to insert a column before Col A and populate the long description and then hide Col A. It works. But I dont want to complicate it with Macro, and want to use EPM functionality to achieve the same.
    Please advise if this is possible with BPC 10 to have a column for local member in between Col A and Col B.
    Thanks a lot in advance.
    Regards,
    Shiva

    Hi Sathish,
    Thanks a lot for replying. Since I had to insert the local member in between two dimensions, I couldnt use the position option in the local members. Because positions were staring from the data range.
    How ever I have tried the suggestion given by Varaprasad and Bishwajith above and it worked.
    Thanks,
    Shiva

  • Merge Two Rows of a table to One row but into two columns

    Hi
    I Am struck in writing a query to merge two rows into two columns of one row.
    Here is the Sample data i am working with,
    Col 1     Col 2     Col3 Col4 Col Col6
    5000     573-3000 2     0     Phone      
    5000     573-3036 1     0          Fax
    5000     893-5703 3     0     WOrk      
    3000     232-5656     1     0     Phone     
    3000     353-5656     2     0          FAx
    Here Col,Col3,Col4 form the Key.
    now wht i am trying to do is to Merge these type of rows put them into Columns P,F,W,E respectively to achive a Structure as below
    Col1      P     F     W
    5000     573-3000      573-3036      893-5703
    3000     232-5656     353-5656     
    Can you please help me how could i do this.
    I am pretty ordinary at writing SQL's.
    Thanks a Lot in Advance
    Message was edited by:
    Sreebhushan

    Search the forum for PIVOT and you'll find plenty of examples.

  • Update multiple rows based on two columns in same row

    I have a 1000 rows in a table I would like to update with a unique value. This unique value is a cocatenation of two columns in teh same row.
    Each row has a (i) date and a (ii) time and a (iii) date_time column. I would like to update the date_time (iii) column with a cocatenation of the (i) date and (ii) time columns.
    I know how I would update a single row but how can I update multiple rows with a cocatenation of each of the two columns - i.e put a different value into the date_time column for each row?

    this?
    update table tab_name
    set date_time =date||time
    where your_condition

  • How to relate two columns in a same row

    I want to relate two columns in a same row, like if A2 is Jack then B2 to be A, if A2 is Anand then B2 to be B, If A2 is Arun then B2 to be C and so on. How to do it?

    Anand,
    Create a table that lists the relationships:
    Name
    Associated Letter
    Jack
    A
    Anand
    B
    Arun
    C
    Then, use a Lookup function to find the name in the lookup table and return the proper letter to your main table.
    Jerry

  • 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

Maybe you are looking for

  • How do I build a slideshow in Dreamweaver

    Trying to build a slideshow in Dreamweaver. The tutorials on line talk about widgets but I can't seem to figure out where and how to install them. What am I missing?

  • MyExpense APP - The right infrastructure

    Hi, we have seen the new SAP APP  MyExpense and we woul like to use it on our sap system. we have an old release: R/3 470. I would like to know if we can use it in some way. we have seen from SAP STORE that the prerequisites are: SAP ECC 6.0 and abov

  • How to get Hotmail to work on my MAC

    I have hotmail set up on my Apple Laptop but it is causing me nothing be problems.  Works sometimes not others, will not send out messages.  Takes forever to receive messages and often have to restart my computer for them to come in.  What do I do?

  • Itunes stop working when importing cd

    Every time I try to import a cd, itunes stops working and closes down. What do I do? Please Help! And where did gracenote come from. That never showed up before. Anyone know how to disable gracenote? Thanks, Amanda

  • Please help me! display the record from the database.

    Hi, all, please help me with the following question. I run my code on the web, the record display on the screen, but when I run again, even I did not put any data into the "memo form", the system display the previous record again which I do not need