Matching more than one condition

I am trying to use the MATCH function to locate a row which contains 2 variables. Can I use the & symbol to do that in the one MATCH function? Should I be using a different technique?
It seems to be working, but then it seems to be bringing back a value of 0 when it finds the correct row.
When I copy the formula using a shift in variable it then can't seem to find the correct row.
So many issues!!

MATCH has just one condition. You might be able to create that single condition by concatenating your other two. For instance, if you are looking for a row that has "Word one" in column B and "Word two" in column C, you can create a new column D that has the formula =B&"-"&C . Then use MATCH on column D to find "Word one-Word two".

Similar Messages

  • Cisco ACE loadbalancing matching more than one header in L7 class map

    Dear All,
    This is regarding Cisco ACE loadbalancing matching more than one header in L7 class map. I have a small setup with ACE 30 module in Cisco6500. I have got three webservers. Presently I have following configuration where I am mathing one url header.
    class-map type http loadbalance match-all L7_WEB_HEADER_MATCH
    description MATCH THE HOST HEADER OF HTTP REQUEST
    2 match http header Host header-value ".*abhisar.com*"
    So for above configuration, when traffic is coming for abhisar.com, it is working fine.
    Now, I have following headers and DNS entry is pointing to same virtual IP for all http url header same as abhisar.com
    abhisarindia.com
    indiaabhi.com
    So new configuration will be
    class-map type http loadbalance match-any L7_WEB_HEADER_MATCH
    description MATCH THE HOST HEADER OF HTTP REQUEST
    2 match http header Host header-value ".*abhisar.com*"
    4 match http header Host header-value ".*abhisarindia.com*"
    6 match http header Host header-value ".*indiaabhi.com*"
    So just want to confirm if this is fine.
    Thank You,
    Abhisar.

    Dear Rajesh,
    Thank you for reply. I will let you know once I carry out this activity.
    Thank You,
    Abhisar.

  • How to use more than one condition together?

    Dear,
    I want to set more than one condition type and use it together for any objects in page, for example page item,page button and etc.
    Is it possible to handle in "PL/SQL Experssion" at condition type?(e.g =>"Request= Expression" and "Current page!= Expression 1",..) if no is answer, please tell me other ways.
    Regards,
    Saeed.

    Hi Saeed,
    Saeed Hassanpour wrote:
    I'd like to know about CGI and Browsers conditions. Can I refer to document or essay about condition type in pl/sql?
        Yes, you can also refer CGI Environment Variables and Browser conditions in "PL/SQL Expression".
        For example :
    The condition type "When cgi_env SERVER_NAME = Expression 1" can be transformed to "PL/SQL Expression" as:
    OWA_UTIL.GET_CGI_ENV('SERVER_NAME') = 'MyServer'
    The condition type for Browser condtions can be can be transformed to "PL/SQL Expression" as:
    instr(upper(OWA_UTIL.GET_CGI_ENV('HTTP_USER_AGENT')),upper('Firefox/37.0')) > 0
        Following is old but comprehensive documentation about Condition Types:
        https://docs.oracle.com/cd/E14373_01/appdev.32/e11838/condition.htm#HTMDB25942
        Hope this helps!
    Regards,
    Kiran

  • Can't select more than ONE conditional text tag in FrameMaker 10?

    Hi, I work with lots and lots of Conditional Text (CT) tags in FrameMaker. We moved to v10, and now I can't select more than ONE CT tag at a time---this means when I need to apply 10 CT tags to one item, I have to select the item, click one tag, click In, and then click Apply---3 clicks, 10 separate times = 30 clicks! (I used to be able to select the item, select all the CT tags I wanted applied into the In box, and then click Apply.) This is very frustrating. I've tried to click all the Ctrl, Shift, and Alt keys separately and then try and select more than one tag, but nothing works. Please help---this is going to be a nightmare for me if this can't work!
    Please help and show me that I can add more than one tag to an item at a time. Thanks so much!!!

    Unfortunately, this capabiliy wasn't carried over to the Conditional Text pod when the new interface design was created. You're stuck selecting the tags one at a time and then applying a condition. It's a bit faster if you select the conditions sequentially, then you have fewer clicks for applying subsequent tags to the same content.
    I fully agree that this sucks.
    Please fill in a bug report and a wish list item at: FrameMaker Bugs & Wish List
    You can also add/vent to the following thread (that is monitored by Adobe):
    Seeking inputs on desired features in FrameMaker

  • Matching more than one column result

    Hello again,
    I'm using a Property/Estate agent database and one of the questions is: List pairs of buyers and properties whose expectation and feature set are exactly matching.
    The way I designed the database was that each property is connected to a property_features table which is connected to a parent table features_list.
    Similarly my buyer table is connected to a required_features table which is connected to the same features_list table
    I need to match buyers and properties where their required and property features (can be more than one) match.
    I have created queries that return the results for buyers and properties individually but I'm unsure how to link these queries to return only exact matches
    select b.peid
    from  buyer b, features_list fl, required_features rf
    where b.peid = rf.peid
    and rf.fid = fl.fid;
    select p.prid
    from property p, features_list fl, property_features pf
    where p.prid = pf.prid
    and fl.fid = pf.fid;All tables used:
    CREATE TABLE BUYER
         PEID CHAR(8) REFERENCES PERSON(PEID),
         MAX_PRICE NUMBER(9,2),
         CONSTRAINT BUYER_PK PRIMARY KEY(PEID)
    CREATE TABLE FEATURES_LIST
         FID CHAR(5) CONSTRAINT FL_PK PRIMARY KEY,
         DESCRIPTION VARCHAR2(50) NOT NULL
    CREATE TABLE REQUIRED_FEATURES
         PEID CHAR(8) CONSTRAINT FK_PEID_RF REFERENCES PERSON(PEID),
         FID CHAR(5) CONSTRAINT FK_FID_RF REFERENCES FEATURES_LIST(FID),
         CONSTRAINT REQ_F_PK PRIMARY KEY(PEID, FID)
    CREATE TABLE PROPERTY
         PRID CHAR(8) CONSTRAINT PR_PK PRIMARY KEY,
         BRID CHAR(5) CONSTRAINT PROPERTY_FK_BRANCH REFERENCES BRANCH(BRID),
         OWNER_ID CHAR(8) CONSTRAINT PROPERTY_FK_OWNER  REFERENCES PERSON(PEID),
         PROP_TYPE CHAR(10) NOT NULL CONSTRAINT TYPE_CHECK CHECK (UPPER (PROP_TYPE) IN ('HOUSE', 'UNIT', 'TOWN_HOUSE', 'COMMERCIAL')),
         FIRST_LISTED DATE NOT NULL,
         STREET VARCHAR2(30) NOT NULL,
         SUBURB VARCHAR2(30) NOT NULL,
         POST_CODE CHAR(4) NOT NULL     
    CREATE TABLE PROPERTY_FEATURES
         PRID CHAR(8) CONSTRAINT FK_PEID_PF REFERENCES PROPERTY(PRID),
         FID CHAR(5) CONSTRAINT FK_FID_PF REFERENCES FEATURES_LIST(FID),
         CONSTRAINT PROP_F_PK PRIMARY KEY(PRID, FID)
    );Some sample output
    select property.prid, property_features.fid, features_list.description
    from property, property_features, features_list
    where property_features.prid = property.prid
    and property_features.fid = features_list.fid;
    Results:
    PR110011 FE002 family room
    PR110011 FE003 modern kitchen
    select buyer.peid, required_features.fid, features_list.description
    from buyer, required_features, features_list
    where required_features.peid = buyer.peid
    and required_features.fid = features_list.fid;
    Results:
    PE110036 FE003 modern kitchen
    PE110036 FE002 family roomSo, the results from my individual queries show that person/buyer PE110036 has required features that match exactly with property PR110011's property features, I need to somehow write a query that provides this functionality
    Any advice very much appreciated!

    I'm still struggling with this one, would there be a solution using PL/SQL?
    Here are some sample insert statements from the tables involved
    INSERT INTO buyer VALUES('PE110002', 300000);
    INSERT INTO buyer VALUES('PE110005', 900000);
    INSERT INTO buyer VALUES('PE110015', 9000500);
    INSERT INTO buyer VALUES('PE110017', 9000400);
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'sunroom');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'family room');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'modern kitchen');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'swimming pool');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'balcony');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'lock up garage');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'ocean views');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'close to transport');
    INSERT INTO required_features VALUES('PE110031','FE003');
    INSERT INTO required_features VALUES('PE110007','FE003');
    INSERT INTO required_features VALUES('PE110031','FE005');
    INSERT INTO required_features VALUES('PE110007','FE005');
    INSERT INTO required_features VALUES('PE110002','FE004');
    INSERT INTO required_features VALUES('PE110002','FE006');
    INSERT INTO required_features VALUES('PE110002','FE009');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR001', 'PE110020', 'House' , '25-Mar-07', '153 Carr St.', 'Coogee','2034');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR002', 'PE110023', 'Unit' , '22-Jan-07', '6/973 Anzac Pde.', 'Kingsford','2032');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR003', 'PE110037', 'Commercial' , '15-Nov-07', '317 Campbell Pde.', 'Bondi','2026');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR003', 'PE110019', 'House' , '19-Feb-07', '680 Bunnerong Rd.', 'Hillsdale','2036');
    INSERT INTO property_features VALUES('PR110001','FE012');
    INSERT INTO property_features VALUES('PR110001','FE017');
    INSERT INTO property_features VALUES('PR110001','FE026');
    INSERT INTO property_features VALUES('PR110001','FE002');
    INSERT INTO property_features VALUES('PR110001','FE009');
    INSERT INTO property_features VALUES('PR110009','FE003');
    INSERT INTO property_features VALUES('PR110033','FE003');Many thanks, this forum is a fantastic help!

  • How to use LIKE for more than one condition

    I want to get list of usernames starting with A,B, and C....can any one provide the query using LIKE

    You would need to use something more like one of these:
    SELECT username FROM table
    WHERE username LIKE ('AB%') or
          username LIKE ('AC%') or
          username LIKE ('AD%');
    SELECT username FROM table
    WHERE SUBSTR(username, 1, 2) IN ('AB', 'AC', 'AD')
    SELECT username FROM table
    WHERE REGEXP_LIKE (username, '^AB|^AC|^AD')The regexp_like version is only available on 10g or higher.
    John

  • Match more than one item in a string

    I've a string with one or more of ##.*##.*##.*## and I want to get all of the pattern which is matching the ##.*##.*##.*## in an array.
    In perl i wrote:
    @array = $string =~ /(##.*##.*##.*##)/gis;
    How to do this in Java?
    Thanx

    Are you sure? Because I'd be surprised if you could do something with perl that you can't do with Java (regarding regular expressions I mean).

  • How to have more than one condition on same column --- using SQL Loader

    Hi All,
    I am stuck with SQL Loader..
    How do I filter records before loading in the table using when clause..
    i should load data only when
    field1 = 'AC' or 'VC'
    field2 is NULL
    i used various combinations in when clause like
    a) when field1='AC' or field1='VC' and field2 = BLANKS
    b) when (field1='AC') and (field2 = BLANKS )
    & similar...
    In all the cases I tried I could not implement OR condition with field1 and null condition with field2
    but my main concern is can we use OR or IS NULL things in when clause of SQL Loader..
    is it possible to check this anywhere??
    any alternate solution u could suggest??
    Thanks
    Dikshit

    Ok I'll try that, although I did try it earlier when I had iTunes 5.xx loaded, I think.
    As to size of playlists, I have a master (900 songs) that defines what will fit onto the ipod , I then generate all the others as subsets of the master (not of the library)- hence I know they will all fit
    Can you also clarify something for me: the dialogue box we are discussing is intended, I think, so that one can set the automatic synching of certain playlists between the PC & the ipod. Is that the only way one can select other playlists to go to the ipod - i.e. as static once-offs, not synchronised ?
    Apple' docs, I think, are poor in this regard - they assume most ipods are bigger then the users song library and they gloss over the details of this alternate mode of playlist synching.
    Thanks - Nick

  • More than one condition for a formula

    HI We have another field that has to 5 values, and if the field is blank, we have to write on the report 'Missing'. I am not sure how one codes for this.
    If
    else
    if
    else etc?

    Hi
    Right click on the database field->Common -> Click on X-2 for Display string and write the below formula
    if IsNull({database field}) then "Missing"
    else "" & {database field};
    Hope this helps!!!
    Regards
    Sourashree

  • Generating duplicates using more than one condition

    dear experts I have the following sample data below
    create table tbl_one
      p_id number(30),
      c_id number(30),
      location_a varchar2(300),
      flag varchar2(1)
    insert into tbl_one
      (p_id, c_id, location_a, flag)
    values
      (1, 112, 'ref_1', '1');
    insert into tbl_one
      (p_id, c_id, location_a, flag)
    values
      (1, 113, 'ref_1', '1');
    insert into tbl_one
      (p_id, c_id, location_a, flag)
    values
      (1, 114, 'ref_2', '1');
    insert into tbl_one
      (p_id, c_id, location_a, flag)
    values
      (2, 115, 'ref_3', '1');
    insert into tbl_one
      (p_id, c_id, location_a, flag)
    values
      (2, 116, 'ref_3', '1');
    insert into tbl_one
      (p_id, c_id, location_a, flag)
    values
      (2, 117, 'ref_4', '1');this is the output I desire below
    PID    C_ID    LOCATION_A     FLAG
    1        112     ref_1                 1
    1        113     ref_1                 1
    2        115     ref_3                 1
    2        116     ref_3                 1basically the output is obtained for all cases where the location_A and flag are duplicated in the same pid
    I need help with the query. All help is appreciated. Thank you

    select p_id, c_id, location_a, flag from
    select p_id, c_id, location_a, flag, count('Dracula') over (partition by p_id, location_a, flag) cnt
    from tbl_one
    where cnt > 1
    order by p_id, c_id
    P_ID     C_ID     LOCATION_A     FLAG
    1     112     ref_1     1
    1     113     ref_1     1
    2     115     ref_3     1
    2     116     ref_3     1

  • More than one iCloud and match on the same iMac

    We have 3 users accounts and 3 apple ids on the same iMac. Can we each use our own icloud on our own user account , as previously with itunes match have got myself locked out for having the computer associated with more than one apple id.

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • My itunes library has organically grown from more than one itunes account but all now on a separate computer.  If I upgrade to iTunes match will I have to pay for each account?

    My itunes library has organically grown from more than one itunes account (all paid for by me) but all now on a separate computer.  If I upgrade to iTunes match will I have to pay for each account or just once, for the computer?

    No.  Provided the computer that you use to upload / match your Songs is authorised to play all of the Songs all works well - once complete you can download Song files that will play on your libraries / other computers without each computer having to be authorised.

  • Sequence contains more than one matching element

    Hi
    I have checked all threads and none answers my issue.
    I am trying to drop a user and am following this blog:
    http://sanderstechnology.com/2013/login-and-user-management-in-sql-azure/12826/#.U46Hh_mSweo
    Below is a series of screen-shots of the issue. Please assist. Thanks, Mark.
    Mark

    Hello,
    Based on your descritpion, you create a SQL database with WEB edition and try to connect to the MASTER database from Windows Azure Management portal. But it is failed with "Sequence contains more than one matching element" occasionally.
    Due to the uncertainty and randomness factors, it requires higher level troubleshooting methods.I suggest you contact Windows Azure support team by creating a support ticket at 
    http://www.windowsazure.com/en-us/support/contact if you recevied this error again.
    As for drop login, it may caused by the premssion. In SQL databae, only server-level principal login (created by the provisioning process) or the credentials of an existing member of the "loginmanager" database role can manage logins. If you are not use
    a server-level principal login, please ask the adminstrator add the login to loginmanager databaserole:
    EXEC sp_addrolemember 'loginmanager', 'login-you-used';
    Reference:http://msdn.microsoft.com/en-us/library/azure/ee336235.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Can we maintain more than one shipping condition for a customer

    Hi,
    Can we maintain more than one shipping condition for a customer

    Hi Raj,
    Yes you can maintain the different shipping condition for one customer but for this that SOLD To Party should have different SHIP to Party also as we mainatin the shipping condition for Ship for the party. In other words you can maintain as many shipping condition equal to the number of ship to party.
    Other way is if that customer is in different sales area then you can maintain the different shipping conditions for that customer in all the different sales area.
    Hope I could make myself clear enough to help you.
    Please reward if its useful.
    Regards,
    Abhi.

  • Can we prevent entering the same condition more than one time?

    Hi friends,
    Can we prevent the user for entering the same condition type more than one time in same sales order?
    Rama rao

    /write codes in Include ZXVVAU05/
    /prgm avbl in one of the msg in forum/
    DATA: BEGIN OF tXKOMV OCCURS 50.
    INCLUDE STRUCTURE KOMV.
    DATA: END OF tXKOMV.
    data : tab_name(40) type c ,
    ld_len type i , ld_len1 type i .
    field-symbols : <tab> type any.
    tab_name = '(SAPMV45A)XKOMV[]'.
    assign (tab_name) to <tab>.
    txkomv[] = <tab>.
    describe table txkomv lines ld_len .
    sort txkomv by kposn KSCHL .
    delete adjacent duplicates from txkomv comparing kposn KSCHL .
    describe table txkomv lines ld_len1 .
    if ld_len1 ne ld_len .
    refresh txkomv .
    message e002(zmm) with ' Please remove duplicate condition in item price' .
    endif .

Maybe you are looking for

  • Can't Get iTunes to Function.....

    I have read through these last couple threads of other people having the same problem; when you boot iTunes you get and error message. I previously had iTunes 6.0, so I needed to update. I downloaded it from here, the apple websight. I went through t

  • ISSUE WITH DATE COLUMN

    Hi All, I have a table(Revenues) and a view(locations) using which I have created a crosstab report which has a date as a  column in the table and rows contain Region and location and Summary column has the revenues. Due to some issues I have again c

  • I would like to know how to stretch a background image using HTML

    Hello Seniors of Sun, I gota small doubt in HTML, can any one please help me in solving it, I would like to know how to stretch a background image using HTML? I have tried and tried to figure this out and cannot.. so any one kindly help me in this...

  • How do I remove sensitive data?

    I want to make a hard copy of my security information, using Numbers and exit Numbers after printing. How can I be sure that none of my data remains on the machine? Would using a Guest account do this? What happens if Time Machine runs in the middle

  • Help: error: can not find the main class!

    when I run the class, the following error message comes up: java.lang.NoClassDefFoundError: j2sdk1/4/1 and also a dialogue window (title is "java virtual machine launcher") comes up: could not find the main class, program will exit! After I click ok