Selecting the rows with the max rank

Using Siebel CRM and tested conditions in Answers - It was observed that one email ID is linked to multiple customers. For an email campaign we need to select only one customer per email basically had to remove all the duplicate email addresses from the list as customer IDs are anyways unique.
Tried using the RANK function - RANK(customer ID by Email) = 1 it gave me unique email addresses and customer IDs but the problem is that the RANK 1 is given to the latest customer added (customer IDs are numeric)
I need a solution to select all the rows with the max rank / all the customers that were added first for all the emails

Don't know what you want to achieve but here is way to do this:
SQL> select * from test;
NO
1
2
3
4
5
SQL> select * from test union all select * from test;
NO
1
2
3
4
5
1
2
3
4
5
10 rows selected.
Daljit Singh

Similar Messages

  • How to select the max rowid from a subquery with group by

    Hi Gurus,
    Kindly help how to fix the following query because I'm getting Oracle error:ORA-01446.
    select * from edy_raw_data a
    where rowid in ( select max(rowid) from(
    select email,max(date_updated) from edy_raw_data b
    where b.email=a.email
    group by email ))
    The query select the max rowid from a sub query with group by.
    Thanks in Advance.
    Benjie

    Why do you need to compare with rowid?
    Wouldn't this suffice?
    select * from edy_raw_data a
    where (email,date_updated) = (select email, max(date_updated) from edy_raw_data b
                        where b.email=a.email
                        group by b.email ))* Note: untested

  • Hi.i want to select only rows with no child rows

    Hi.i want to select only rows with no child rows in hierarchical queries.

    http://www.rampant-books.com/10g_80.htm
    bye
    TPD

  • Select the max record on date, but not today

    Hi all,
    I have this table
    Access
    codi_uten number(9)
    data_acce DATE
    and for
    select data_acce from Access
    the codi_uten=3041
    order by data_acce;
    this is the result
    DATA_ACCE
    29-OTT-07
    05-NOV-07
    09-NOV-07
    09-NOV-07
    09-NOV-07
    16-NOV-07
    23-NOV-07
    23-NOV-07
    20-DIC-07
    20-DIC-07
    Where 20-Dic-07 is today ;)
    I need a statment that can give me only the last data value (in this format dd/mm/yyyy) but it cannot consider today.
    It's possible without use the RowId?
    Thank's
    Paolo from Madrid

    No, you don't need rowids.
    Creating an example table:
    create table t
    ( id number primary key,
      day  date);
    insert into t values(1, sysdate);
    insert into t values(2, sysdate-1);
    insert into t values(3, sysdate-2);
    insert into t values(4, sysdate-3);Looking all rows:
    select * from t
    ID                                       DAY                 
    1                                        12/20/2007 10:24:28 A
    2                                        12/19/2007 10:24:28 A
    3                                        12/18/2007 10:24:28 A
    4                                        12/17/2007 10:24:28 A
    4 rows selectedFind the last row, except rows with day = today
    select *
    from t
    where day = (select max(day)
               from t
                 where day < trunc(sysdate))
    ID                                       DAY                 
    2                                        12/19/2007 10:24:28 AAnd, finally, formating the data
    select id, to_char(day, 'dd/mm/yyyy')
    from t
    where day = (select max(day)
               from t
                 where day < trunc(sysdate))
    ID                                       TO_CHAR(DAY,'DD/MM/YYYY')
    2                                        19/12/2007      Merry Xmas,
    Miguel

  • Regexp substr to select the max number out an string

    Hi all,
    I need a solution for a query.
    I,ve a query to select the lowest number in a string.
    select regexp_substr('9 - 10','\d+')
    from dual;
    9
    So this is the query I need to select the min number in he string.
    but now I need it to give me the highest nr in the string .
    the output that I need =10
    Can someone help me pleasse?
    My regards

    Caroline wrote:
    select regexp_substr('9 - 10','\d+')
    from dual;
    9
    So this is the query I need to select the min number in he string.Actually it only gives you the first number in the string, not the minimum number.
    SQL> select regexp_substr('9 - 10','\d+')
      2  from dual;
    R
    9If your string is the other way around it will give you 10 instead of 9.
    SQL> ed
    Wrote file afiedt.buf
      1  select regexp_substr('10 - 9','\d+')
      2* from dual
    SQL> /
    RE
    10You probably want something like...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select '9 - 10' as txt from dual)
      2  -- end of sample data
      3  select min(num) as min_num, max(num) as max_num
      4  from (
      5        select to_number(trim(REGEXP_SUBSTR (txt, '[^-]+', 1, level))) as num
      6        from t
      7        connect by level <= length(regexp_replace(txt,'[^-]*'))+1
      8*      )
    SQL> /
       MIN_NUM    MAX_NUM
             9         10
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select '10 - 9' as txt from dual)
      2  -- end of sample data
      3  select min(num) as min_num, max(num) as max_num
      4  from (
      5        select to_number(trim(REGEXP_SUBSTR (txt, '[^-]+', 1, level))) as num
      6        from t
      7        connect by level <= length(regexp_replace(txt,'[^-]*'))+1
      8*      )
    SQL> /
       MIN_NUM    MAX_NUM
             9         10
    SQL>

  • Can you select the max of a group by and mach it to another table?

    I can't get my little head around this one. I have 2 tables
    table 1:
    T1ID col1 col2 col3
    1 a t e
    2 g y a
    3 h r p
    4 f u w
    and table 2 that has many entries from table 1
    Table 2:
    T1ID ID col1
    1 3 Y
    1 2 M
    1 1 H
    3 2 W
    3 1 E
    I want the contents of table 1 with the value of col1 from table 2 where the ID is the highest?
    so returning table 3:
    ID col1 col2 col3 col1_from_table_3
    1 a t e Y
    2 g y a
    3 h r p W
    4 f u w
    is this easy to do with a select statment?
    Thanks for all of you help(in advance)
    LT

    SQL> create table t1 (t1id,col1,col2,col3)
      2  as
      3  select 1, 'a', 't', 'e' from dual union all
      4  select 2, 'g', 'y', 'a' from dual union all
      5  select 3, 'h', 'r', 'p' from dual union all
      6  select 4, 'f', 'u', 'w' from dual
      7  /
    Tabel is aangemaakt.
    SQL> create table t2 (t1id,id,col1)
      2  as
      3  select 1, 3, 'Y' from dual union all
      4  select 1, 2, 'M' from dual union all
      5  select 1, 1, 'H' from dual union all
      6  select 3, 2, 'W' from dual union all
      7  select 3, 1, 'E' from dual
      8  /
    Tabel is aangemaakt.
    SQL> select t1.t1id id
      2       , max(t1.col1) keep (dense_rank last order by t2.id) col1
      3       , max(t1.col2) keep (dense_rank last order by t2.id) col2
      4       , max(t1.col3) keep (dense_rank last order by t2.id) col3
      5       , max(t2.col1) keep (dense_rank last order by t2.id) col1_from_t2
      6    from t1
      7       , t2
      8   where t1.t1id = t2.t1id (+)
      9   group by t1.t1id
    10  /
       ID COL1  COL2  COL3  COL1_FROM_T2
        1 a     t     e     Y
        2 g     y     a
        3 h     r     p     W
        4 f     u     w
    4 rijen zijn geselecteerd.Regards,
    Rob.

  • Compare Dates and select the max date ?

    Hello,
    I am trying to write a script and will compare the dates in " eff_startdt" and give me the lastest date at the outcome.
    I have data that some service locations have more than one contract date and I need to get the latest dated conract dates to work on the data but I tried many things I am always getting errors. When I run the script below I get " missing expression" error. I dont' see anything missing.
    also somehow Max() is keep giving me errors when I do something like [  ON service_locs = vmeterid WHERE SERVICE_LOCS = SERVICE_LOCS AND EFF_STARTDT = MAX(EFF_STARTDT)  ]
    Can someone pls give me advice on this. Thanks
    SELECT DISTINCT Broker, customer_name, service_locs, fee_kwh, qtr_monthly, eff_startdt, eff_enddt
    FROM VMETER
    INNER JOIN BROKER_DATA
    ON service_locs = vmeterid WHERE SERVICE_LOCS = SERVICE_LOCS AND (SELECT MAX(EFF_STARTDT) FROM VMETER)
    -----------------------------------------------------------

    Hi,
    I will try to explain on my example. I have got a table:
    DESC SOLD_ITEMS;
    Name                                    Value NULL? Type
    COMPONENT                                          VARCHAR2(255)
    SUBCOMPONENT                                       VARCHAR2(255)
    YEAR                                               NUMBER(4)
    MONTH                                              NUMBER(2)
    DAY                                                NUMBER(2)
    DEFECTS                                            NUMBER(10)
    DESCRIPTION                                        VARCHAR2(200)
    SALE_DATE                                          DATE
    COMP_ID                                            NUMBERI have insert example data into my table:
    select component, subcomponent, sale_date,comp_id
      2  from sold_items;
    COMPONENT       SUBCOMPONENT    SALE_DAT    COMP_ID                            
    graph           bar             06/04/03          1                            
    graph           bar             06/04/01          2                            
    search          user search     06/04/02          3                            
    search          user search     06/04/01          4                            
    search          product search  06/03/20          5                            
    search          product search  06/03/16          6                            
    graph           bar             06/05/01          7                            
    graph           bar             06/05/02          8                            
    graph           bar             06/05/02          9
    As you can see there are a few components and subcomponents duplicated with different date and comp_id value.
    I want to get component and subcomponent combination with latest date.
    SELECT COMPONENT, SUBCOMPONENT, MAX(SALE_DATE)
      2  FROM SOLD_ITEMS
      3* GROUP BY COMPONENT, SUBCOMPONENT;
    Efect:
    COMPONENT       SUBCOMPONENT    MAX(SALE                                       
    graph           bar             06/05/02                                       
    search          user search     06/04/02                                       
    search          product search  06/03/20
    For your purpose I will do it using join and subquery. Maybe it will help you resolve your problem:
    SELECT COMPONENT, SUBCOMPONENT, SALE_DATE, RANK
      2  FROM (SELECT T1.COMPONENT, T1.SUBCOMPONENT, T2.SALE_DATE,
      3          ROW_NUMBER() OVER (PARTITION BY T1.COMPONENT, T2.SUBCOMPONENT ORDER BY T2.SALE_DATE DESC) AS ROW
      4          FROM SOLD_ITEMS T1, SOLD_ITEMS T2
      5          WHERE T1.COMP_ID = T2.COMP_ID)
      6* WHERE ROW = 1;
    I joined the same table but it act as two different tables inside subquery. It will group values (partition by statement) and order result descending using t2.sale_date column. As you can see columns are returned from both tables. If you would like to add some conditions, you can do it after WHERE ROW=1 code.
    Results:
    COMPONENT       SUBCOMPONENT    SALE_DAT       RANK                            
    graph           bar             06/05/02          1                            
    search          product search  06/03/20          1                            
    search          user search     06/04/02          1Hope this help you
    Peter D.

  • Need to select the max record in a report

    Dear All,
    I have a certain report which displays the employee records along with their 'empids' and their 'beginning date'. For each 'empid', there are more than one records and hence more than one 'beginning date'. I need to select that record which contains the maximum 'beginning date'. How can this be possible in the reporting level without doing any coding in update rules or writing any exit ?
    Regards,
    Srinivas

    Hi,
    I think it is not possible because  i am having doubt how the for each employ id how it will be different joining dates,i think for each employ having differeent joining dates ,if u want to see maximum number of employs in which in company then we can go for the only option non cumulative kf with maximum value with ur joining date as the reference.but it report level if it is keyfigure we can have options of maximum and minimum and like that we can do but in case of characterstic like employnumber and joiningdate both are characterstics.
    Thanks
    sathsih

  • Select first rows with rowno

    Problem: I search for 20 companies with highest turnover in a table. Its a dynamic SQL (created at runtime), I can not use a hard coded fetch of 20 rows.
    (Example is a simple table with companyID, turnover and a key)
    I read in documentation, that first rowno is applied, then the order (to be fast and not access the whole big table). Ok.
    Oracle goes same way, this is the work around:
    SELECT * FROM (SELECT t1.Firmid_i AS t1_Firmid_i, SUM( t1.Amount_dc ) AS t1_Amount_dc FROM DEMO.turnover t1 GROUP BY t1.Firmid_i, t1.Productid_i ORDER BY 2 desc ) WHERE  rownum <= 20
    I try this on a MaxDb :
    SELECT * FROM (SELECT t1.Firmid_i, MAX( t1.Amount_dc ) FROM DEMO.turnover t1 GROUP BY t1.Firmid_i ORDER BY 2 asc) WHERE rowno <= 20 
    -> an error occur (General error;-5016 POS(103) Missing delimiter: ), the order in the inner sql is not allowed
    I can change the statement:
    SELECT * FROM (SELECT t1.Firmid_i, MAX( t1.Amount_dc ) FROM DEMO.turnover t1 GROUP BY t1.Firmid_i) WHERE  rowno <= 20  ORDER BY 2 asc 
    Now I got 20 row (20 rows sorted), but not the results I need (sort is used to late).
    Does anyone knows a workaroud?
    TIA
    Christian

    Hello Christian,
    Unfortunately, MaxDB does not support the ORDER BY/GROUP BY condition in sub-selects to achieve such a result set limitation, nor does it support a kind of LIMIT statement
    as MS-SQL does.
    Anyway, to give the correct results, the query will anyway
    create the complete result set, to apply the correct sorting (as the rows can only be sorted when for all rows the values are known).
    There is unfortunately no way to formulate such a query
    in a single SQL statement, and so you can only
    fetch as much rows you need, and discard the rest,
    which you said is not possible for you.
    Sorry
    Alexander Schröder

  • How to select one row with such sql

    hi , everyone
    I got a headache about this sql:
    select * from E_VPN_pbxlink where ((SPILOTNUM ='1234' ) or (SPILOTNUM ='123')) order by SPILOTNUM desc ;
    it retruns 2 records.
    I need to get the record with SPILOTNUM ='1234' , how can I reform this sql
    tks

    Hi,
    I think I see:
    You want the longest spilotnum that starts with the same charachters as the parameter.
    You can do a Top-N Query like this:
    WITH  got_rnum     AS
         select  e.*
         ,     RANK () OVER (ORDER BY  LENGTH (spilotnum DESC)     AS rnum
         from      E_VPN_pbxlink
         where      '123456'     LIKE SPILOTNUM || '%'
    SELECT     *     -- or list all columns except rnum
    FROM     got_rnum
    WHERE     rnum     = 1
    ;There is a slightly simplerr way, using the ROWNUM pseudo-column, but its only slightly easier, and it won't help if, say, you want to pass two or more targets such as '123456' in the same query.

  • Select thousand rows with dbadapter

    hi guys,
    anyone have tried to select thousand of rows data from database using soa db adapter ?
    everytime i tried to select more than 5000 rows, then it will turn into error.
    i'm using jdev 11.1.1.7 soa 11.1.1.7
    error code from console
    [code]
    <Jan 7, 2014 5:46:52 PM ICT> <Error> <EJB> <BEA-010026> <Exception occurred during commit of transaction Name=[EJB com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean.handleInvoke(com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage)],Xid=BEA1-1E4FA285A12B8F14E263(57883289),Status=Rolled back. [Reason=weblogic.transaction.internal.TimedOutException: Transaction has timed out when making request to XAResource 'jdbc/apps_bpm_domain'.],numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=307,seconds left=54,XAServerResourceInfo[SOADataSource_bpm_domain]=(ServerResourceInfo[SOADataSource_bpm_domain]=(state=rolledback,assigned=soa_server1),xar=SOADataSource,re-Registered = false),XAServerResourceInfo[jdbc/smhr_bpm_domain]=(ServerResourceInfo[jdbc/smhr_bpm_domain]=(state=rolledback,assigned=soa_server1),xar=jdbc/smhr,re-Registered = false),XAServerResourceInfo[jdbc/apps_bpm_domain]=(ServerResourceInfo[jdbc/apps_bpm_domain]=(state=rolledback,assigned=soa_server1)
    ,xar=jdbc/apps,re-Registered = false),SCInfo[bpm_domain+soa_server1]=(state=rolledback),properties=({weblogic.transaction.name=[EJB com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean.handleInvoke(com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage)]}),local properties=({weblogic.jdbc.jta.SOADataSource=[ No XAConnection is attached to this TxInfo ], weblogic.jdbc.jta.jdbc/apps=[ No XAConnection is attached to this TxInfo ], weblogic.jdbc.jta.jdbc/smhr=[ No XAConnection is attached to this TxInfo ]}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=soa_server1+10.206.131.27:8001+bpm_domain+t3+, XAResources={SOADataSource_bpm_domain, eis/Apps/Apps, eis/tibjms/Queue, eis/activemq/Queue, WLStore_bpm_domain__WLS_soa_server1, EDNDataSource_bpm_domain, WLStore_bpm_domain_SOAJMSFileStore, WLStore_bpm_domain_UMSJMSFileStore_auto_2, eis/webspheremq/Queue, eis/AQ/aqSample, eis/fioranomq/Topic, eis/aqjms/Queue, eis/sunmq/Queue, eis/pramati/Queue, j
    dbc/hr_bpm_domain, eis/tibjms/Topic, eis/tibjmsDirect/Queue, eis/jbossmq/Queue, WSATGatewayRM_soa_server1_bpm_domain, eis/wls/Queue, eis/tibjmsDirect/Topic, WLStore_bpm_domain_AGJMSFileStore, WLStore_bpm_domain_BPMJMSFileStore, eis/wls/Topic, WLStore_bpm_domain_PS6SOAJMSFileStore, eis/aqjms/Topic, jdbc/smhr_bpm_domain, jdbc/apps_bpm_domain},NonXAResources={})],CoordinatorURL=soa_server1+10.206.131.27:8001+bpm_domain+t3+): weblogic.transaction.RollbackException: Transaction has timed out when making request to XAResource 'jdbc/apps_bpm_domain'.
    [/code]
    pls throw some light.
    thanks

    by default the value of the timeout is zero (0). it has no timeout for my understanding.
    now i'm trying to find workaround.
    i'll create 2 soa composite. 1 for get 500rows of data every time invoked. and 1 to loop to call the 1st composite.
    this one work but have a intermittent error.
    1st issue is i have to allocate a lot of connection pool to handle lots of db connection based on the db row data.
    2nd issue i can't trace the xml in SOA EM composite request.
    is the only way is to let the copy data from 1 database to another database handled by the DB ? cannot utilize the soa ?

  • Finding the max value using partition by

    Hi
    I've the following requirement where i need to select the max value from the data
    WITH T AS
    (SELECT 48003 ID ,'SPR' RTNG_TP_CD , 'INS' RL_CD ,'A-' RAT_CD FROM DUAL UNION ALL
    SELECT 48003 , 'SLNG' ,'INS','A-' FROM DUAL)
    SELECT distinct  ID, RTNG_TP_CD,RL_CD,MAX(RAT_CD)  over (partition by id) RT_CD
    FROM T
    For a single id if there are 2 RTNG_TP_CD then select the max(rat_cd) by displayin rtng_tp_cd =SLNG
    Expected Output
    48003 , SLNG , INS , A-Thank You

    WITH T AS
    (SELECT 48003 ID ,'SPR' RTNG_TP_CD , 'INS' RL_CD ,'A-' RAT_CD FROM DUAL UNION ALL
    SELECT 48003 , 'SLNG' ,'INS','A-' FROM DUAL)
    SELECT distinct ID,decode((select count(*) from t where id=t.id),1,RTNG_TP_CD, 'SLNG') RTNG_TP_CD,RL_CD,MAX(RAT_CD) over (partition by id) RT_CD
    FROM T

  • Selecting multiple rows using column header with checkbox in it.

    Dear All.,
    I am trying to select multiple rows with checkbox in column header but it doesnot works...
    Following is my codel
    <af:table value="#{bindings.xx.collectionModel}"
                          var="row"
                          rows="#{bindings.xx.rangeSize}"
                          emptyText="#{bindings.xx.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.xx.rangeSize}"
                          rowBandingInterval="1"
                          filterModel="#{bindings.xx.queryDescriptor}"
                          queryListener="#{bindings.xx.processQuery}"
                          varStatus="vs" partialTriggers="sbcSelectAll sbcChkFlag"
                          selectedRowKeys="#{bindings.xx.collectionModel.selectedRow}"
                          selectionListener="#{bindings.xx.collectionModel.makeCurrent}"
                          rowSelection="none" id="tCdMast" width="400"
                          columnStretching="column:c4" inlineStyle="height:200px;">
                  <af:column sortProperty="ChkFlag" filterable="true"
                             sortable="true"
                             headerText="#{bindings.xx.hints.ChkFlag.label}"
                             id="c2" width="55"
                             inlineStyle="#{row.ChkFlag ? 'background-color:#9CACC9;' : ''}">
                    <af:selectBooleanCheckbox simple="true" value="#{row.ChkFlag}"
                                              selected="#{row.ChkFlag}" id="sbcChkFlag"
                                              autoSubmit="true" immediate="true"/>
                    <f:facet name="header">
                      <af:selectBooleanCheckbox simple="true"
                                                autoSubmit="true"
                                                valueChangeListener="#{xxBean.onTableChkAllCheckChanged}"
                                                id="sbcSelectAll"/>
                    </f:facet>
                  </af:column>
    </af:table>
    Managed Bean
        public void onTableChkAllCheckChanged(ValueChangeEvent valueChangeEvent) {
            Boolean newValue =
                Boolean.valueOf(u.nvlString(valueChangeEvent.getNewValue(),
                                            "false"));
            Boolean oldValue =
                Boolean.valueOf(u.nvlString(valueChangeEvent.getOldValue(),
                                            "false"));
            if (newValue.equals(oldValue))
                return;
            int rowIndex=0;
            ViewObject vo = u.findIterator("xxIterator").getViewObject();
            vo.reset();
            while(vo.hasNext()){
              Row row;
              if(rowIndex==0)
                  row=vo.first();
              else
                  row=vo.next();
                 row.setAttribute("ChkFlag", newValue.booleanValue());
              rowIndex=1;
            u.addPartialTargets(tableDocuments);
        }Please help!!.
    Thanks & Regards,
    Santosh.
    jdeve 11.1.1.4.0

    Can you check this sample in the blog post?
    http://sameh-nassar.blogspot.com/2009/12/use-checkbox-for-selecting-multiple.html
    Thanks,
    Navaneeth

  • How to select rows with Empty Column Entry

    I am trying to select all rows with an empty column
    select row1 from table where row2=' ';
    Any suggestions. I tried a space and no space in between the ''.

    An (theoretical) argument could be made that an empty string is not NULL (uknown), however Oracle's SQL and PL/SQL engines make no such distinction for VARCHAR2 and CHAR data types. As stated, you must use NULL as the comparison.
    Michael

  • I want the max date but only look at rows with a certain category value.

    I want a way to get the max date but only look at rows with a certain category value - ignoring the other rows.  My detail table contains expenditures including date (col A) and category (col D) the number of rows will increase with expenditures over time.  My summary table will have a cell for each category and display the last expense date for that category using a functionality that I must ask of you, dear community.
    I am using the latest numbers on an iPad (4) with IOS6.
    Secondarily, I would like to add another cell in the summery table with the value (col E) of the last expense for each category.
    Thank you,
    Warren

    ...later...
    With the addition of an auxiliary column to the Main table, a second header row to the Most recent table, and a minor modification to the formula on the second table, the tables can handle a range of dates set by entering the first and last date into A1 abd B1 respectively of the summary table, Most recent.
    Note that the selected range, shown with a green background in the auxiliary column, does not contain any category B expenses. Using LOOKUP, this would result in a repeat of the January 6 expense bering listed in this row. Switching to VLOOKUP, which can be set to require an exact match, allows the result shown—if there are no expenses in a given category, the formula returns "none" (or whatever message you substitute for "none" in the formula in that column).
    Formulas:
    Main::A2: =IF(OR(B<Most recent :: $A$1,B>Most recent :: $B$1),"x"&E,E)
    Fill down to the end of column A.
    This column must be located on the left side of the table (ie. must be column A), but may be hidden.
    Most recent::A2: =IFERROR(VLOOKUP($D,Main :: $A:$D,COLUMN()+1,FALSE),"none")
    "FALSE" will display as "Exact match" in Numbers's formula editor.
    Fill down to the end of the table and right to column C.
    Regards,
    Barry

Maybe you are looking for

  • How to submit a program after completion of a background job

    Hi Experts, I have a small issue. In my report program i am calling one transaction using call transaction it will trigger a background job. After completion of this background job i need to submit another program, Because the background job updating

  • Migration from imac to ibook keeping the files intact on imac.

    hi, I have just bought a second hand ibook g4 osx10.4 and want to migrate some of my apps, documents and other files from my imac osx10.4.11. I will still be using my imac so want to know if its safe to use the normal migration procedure or will it d

  • [SOLVED] kdeinit4 crashing on startup (and a few other new installat..

    I have just switched from openSuSE to ArchLinux, and needless to say, am a bit disappointed as to why I didn't make the switch before. ArchLinux is just pure awesome and everything seems to be working fine after a mile of manual readings and tweaking

  • Smartform printing & sending multyple table data

    Hi All.. I designed a smartform & print Pgm.( for Invoice not SAP standard) How can i send multiple table(kna1,vbrk,vbrp,vbdk) data in to a smart form? & how can i declare that internal table in smart form & in print pgm? And it is also not printing.

  • Experiencing iPhone 6 plus discoloration after using a case

    When I bought my 6+ in November, I immediately put it in a case (Spigen Tough Armor). The case leaves a few spots on the phone exposed: mute toggle switch, the ports and speaker on the bottom, and a circle on the back for the Apple logo. I removed th