Select ONLY certain values...issue

Post Author: Ria Shaw
CA Forum: Formula
As an e.g. I would like to select user who are = x, y, z ONLY
I want to exclude users who are = x, y,z and a,b, c etc.
The problem is that the etc I mentioned above is literally hundreds of values in the table.
How woud I do that?
Thank you

Post Author: Charliy
CA Forum: Formula
Need a better idea of what your data looks like to give a definitive answer.  What do you mean by user who are - x, y, z?
There was an earlier post you might want to dig for.  The heading was something along the lines of 'Select if and only if"  In that case they wanted to list an item only if all its sales were at store #2.  I think it was about a month ago.

Similar Messages

  • I do not want all of the playlists in iTunes to be synced to my iPhone. With iCloud I do not seem to have a choice. How do I select only certain playlists for my iPone?

    I have many songs and playlists in my iTunes account.  I do not want all of them synced to my iPhone 5S, but that has happened via iCloud, and it has caused a storage problem on my phone.  How do I select only certain playlists to be synced to my iPhone? 

    You need to start over with Music. On the iPhone Music screen uncheck sync music. Also, on the Summary screen uncheck "Manually manage music and videos", then sync and it should clear off your phone.
    Next, choose the music you want to sync. If you want to fit more on check "Convert higher bit rate songs to 128 kbps AAC". This will reduce quality slightly, but it won't be noticable unless you are using $300 headphones.

  • How do I select only certain songs from itunes library to upload to my iphone?

    Trying to free up some memory and my whole itunes library is loaded on my phone.  Is there a way to select only certain songs to sync with my phone?

    When your iphone is connected to iTunes, go to the phone section, go to options and then select "Sync only checked songs and videos".  Then go to yotur iTunes music library, and check only the songs you want.  If you are viewing the library in the "songs" option the check boxes are next to the songs.  If you are viewing from the "album" view, you have to right-click each song and select check.

  • Can you select only certain email folders to show up in Thunderbird?

    We use shared folders between proxy users. We have records requests and need a faster way to provide the request to the citizen who is requesting the information. Thunderbird is a work around so we can easily forward the information that is in one folder. We would like to know if there is a way to only sync up with the one designated folder or if we have sync the entire email account.

    right click the account and select settings.
    Under server setting select advanced and select only show subscribed folders.
    Right click the account again
    Select subscribe and subscribe to only the folder/s you want to see.
    To make things faster you can also go to the synchronization and storage settings section in account settings and deselect the keep messages for this account on this computer. This will cause only the header information to compile the mail list to be downloaded and the message body will be fetched on demand. This will reduce traffic on the network as the messages will not be downloaded to each user, unless they are needed for viewing, printing forwarding et cetera.

  • Select list null value issue - for filtering the tabular form report

    hello,
    I have a tabular form created on emp table and in the table their are entries for the employees who don't have a location, like it is null for some of the employees.
    Now I have created a select list item - for filtering the results based on location.
    my select query for select list item is
    select distinct location_name d,location_id r from emp order by 1
    -- so my select list contains all the distinct location_name including the null on my tabular form.
    so based on the selelcted value(in the select list), I am able to filter the results in my tabular form.
    but the thing is that when i try to select an null value from my select list - i am not able to filter my report - like its displaying all the records, its not filtering.
    can anyone help me out with this.
    thanks.

    Hi
    Try below select for LOV
    select distinct nvl(location_name,'No Location') d,nvl(location_name,'No Location') r from emp order by 1 And then change tabular from select where clause also use nvl(location_name,'No Location') like
    SELECT *
    FROM emp
    WHERE nvl(location_name,'No Location') = :Px_YOUR_ITEMBr, Jari

  • HT201302 This does NOT give an option to select only certain photos to transfer! It only allows ALL photos to be transferred!

    I have tried this method several times & there is no option anywhere to select certain photos to be imported! Sure I can import ALL my photos but what I want is to only import a few! whoever keeps posting the same method is wrong!

    If you're doing it via iTunes it transfers all the photos in a certain folder. If you choose 'my photos' folder then it'll put everything in that folder onto your iPad.
    If you want just a few you can always copy those photos into a different folder and then choose that one for the sync. Or you can use dropbox or simply e-mail them to yourself.
    Syncing via iTunes does have one 'whammy' in that if you sync them on, you have to sync them off, you can't delete them off the iPad without using iTunes to delete them.
    For me when I was wanting just a few onto my iPad, I made a 'ipad photos' folder on my desktop, copied those photos into there, designated that folder in itunes and synced and they were on there.

  • Insert to table as select only some values

    Hi all,
    I have those two table
    Table ANAGUTEN
    CODI_UTEN NOT NULL NUMBER(5)
    NOME_UTEN NOT NULL VARCHAR2(30)
    PASS_UTEN NOT NULL VARCHAR2(30)
    Table RELAUTENPROF
    CODI_PROF NOT NULL NUMBER(5)
    CODI_UTEN NOT NULL NUMBER(5)
    The problem is that only some records of ANAGUTEN are in RELAUTENPROF, but this is an error.
    How can I insert into RELAUTENPROF only the record (the field CODI_UTEN) that are in ANAGUTEN and that aren't into Relautenprof.
    Is there a single statment to do this. I wouldn't use a pl/sql procedure
    Note: the codi_prof is always = 2
    Thank's and sorry for the simple question
    Paolo

    Here's three, I can think of at least three more.
    INSERT INTO relautenprof
    SELECT 2, codi_uten
    FROM anaguten
    WHERE codi_uten NOT IN (SELECT codi_uten
                            FROM relautenprof)
    INSERT INTO relautenprof
    SELECT 2, codi_uten
    FROM anaguten a
    WHERE NOT EXISTS (SELECT 1
                      FROM relautenprof r
                      WHERE r.codi_uten = a.codi_uten)
    INSERT INTO relautenprof
    SELECT 2, codi_uten
    FROM (SELECT codi_uten
          FROM relautenprof
          MINUS
          SELECT codi_uten
          FROM anaguten)John

  • Query to select only Y values , if all are Y, say All

    Kinldy provide me the query
    select * from FILTER_User
    CREATE TABLE [dbo].[FILTER_User](
    [UserName] [nvarchar](128) NULL,
    [Is_Member] [char](1) NOT NULL
    INSERT INTO FILTER_User (UserName, Is_Member) VALUES ('Raj', 'Y')
    INSERT INTO FILTER_User (UserName, Is_Member) VALUES ('Ravi', 'Y')
    INSERT INTO FILTER_User (UserName, Is_Member) VALUES ('Kumar', 'Y')
    INSERT INTO FILTER_User (UserName, Is_Member) VALUES ('Gopal', 'Y')
    -- If all the Values in [Is_Member] is Y, display all
    select * from FILTER_User
    Expected Result
    All
    INSERT INTO FILTER_User (UserName, Is_Member) VALUES ('Sridhar', 'N')
    INSERT INTO FILTER_User (UserName, Is_Member) VALUES ('Aravind', 'Y')
    -- If all the Values in [Is_Member] is not Y, display the names which are Is_Member] Y
    select * from FILTER_User
    Expected Result
    Raj
    Ravi
    Kumar
    Gopal
    Aravind
    ShanmugaRaj

    Check this:
    declare @filter_user table(name varchar,Is_Member varchar(10))
    insert @filter_user select 1,'Y'
    insert @filter_user select 2,'Y'
    insert @filter_user select 3,'Y'
    insert @filter_user select 4,'Y'
    declare @sumy int,@sumall int
    select @sumy=sum(case Is_Member when 'Y' then 1 else 0 end) ,@sumall=sum(1)
    from @filter_user
    if(@sumy=@sumall)
    select 'All' as result
    else
    select name as result
    From @filter_user
    where Is_Member='Y'
    Thanks,
    Jay
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • On install, itunes to select only certain files

    I only want itunes to include certain types of files (M4A and NRG) when i install itunes. How can I do this?

    Well, I probably should have searched the extensions first. I did find this one, which will be very helpful in some cases: http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1093470#

  • I used to be able to sync only certain apps but now there is no tick box to select which ones how do I do this now

    Hi
    The tick box seems to have disappeared from Apps when syncing - just bought a new ipad mini and don't want all my apps on it but without the tick box I'm not sure how to select only the ones I want.  Can anyone tell me how I now select only certain apps.

    Hey Maggiely,
    Thanks for the question. The following article may have the answer to your question:
    iTunes 11 for Mac: Add apps to iPod touch, iPhone, or iPad
    http://support.apple.com/kb/PH12115
    Select Sync Apps, and click Install next to the apps you want to sync. If you have iOS 3.1 or later, you can also do the following:
    - Drag apps from the list on the left to the Home screen on the right.
    - Arrange your device’s Home screens by dragging app icons to where you want them to appear.
    Thanks,
    Matt M.

  • How to display certain values from ValueHelp

    Hi,
    how do i display only certain values in ValueHelp of the Variable Input section? currently i see all values that were maintained in Master Data. I have tried different options available in the Business Explorer Tab of the InfoObject in question.
    Any suggestions?
    SD

    Hi,
    Refer the follwoing document.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20ecb78c-374a-2d10-c6af-f024f19b785d
    I hope it will help.
    Thanks,
    S

  • KE3I transport only specific value field

    Hello :
    I would like to transport only specific value field like vv001 in KEA6.
    I understand that use KE3I select ABAP repository but not choice to select only specific value field. Please advise.
    Manthana

    HI,
    its not possible to transport only a specific value field. If the value field is assigned to an operating concern, the CE1**** data structure is changed and therefore the whole transport procedure (see numerous other threads in SDn-forum) has to be followed.
    best regards, Christian

  • JTable row selection on certain cell values

    Hi Everybody,
    Here is the scenario. I have MyTableModel.java, MyTable.java and MyTablePanel.java etc classes. I want that user can only able to select the row in the table when there is certain data in the cell, otherwise user should not able to select the row.
    I know in advance that only one value form a pole of value can be in the cell, and I know all these pole data. Let say we have the three constant values in the pole i.e.. A, B, and C. I want that when there is "B" value in the cell, then user can select the row, in other two cases should not.
    What I did I looked the value form the TableModel for that cell, if the value is "B" then set the "flag" true otherwise false, and used this flag in the table.setRowSelectionEnabled(flag).
    The problem is that this method just read the flag at the start, even when the flags value changed, doesn't make any change.
    Is some body have any idea, how I can solve this problem.
    Thanks in advance

    It sounds like you are trying to catch selections from the user at the point where they click on the row, right? The problem is that the clicking event is what selects the row, so by the time you catch it in an event handler, the selection has been done.
    I guess the best way to do it is to have a MouseListener on the table which intercepts the click and checks the value held in the cell. If the cell displays a value the user shouldnt be able to select, it should set the selection in the table selection model back to empty.
    DS

  • Crystal Report Formula to select Record  of only MAX Value

    hi Everyone,
    i need a simple crystal report formula to select one department whose recived quantity Maximum.
    for example:
    itemcode    dscription      departmen   op       recived       issue        
      1                   a                ab               2              2              2         
      1                   a                bb              0             2              2          
      1                   a                bc               4             8              2         
      1                   a                cc              2              2              2
    i group by item  the item show just once but i want a formula to show one department who's recived quantity is maximum.i suppress the detail section.and just show the group footer/
    itemcode    dscription      departmen   op       recived       issue        
      1                   a                  bc                 8             14             8 

    Thanks
    Re: Crystal Report Formula to select Record  of only MAX Value
    Abhilash Kumar

  • Syntax to only allow certain values in column

    What is the syntax, when I create a table, to only allow certain values in a specific column ?
    create table x
    col1 char(1) <- for example, only want to allow Y or N
    ) tablespace myspace;

    That would be a check constraint. Please check the oracle syntax on constraints.
    create table x
    col1 char(1),
    CONSTRAINT check_col1
    CHECK ( col1 in ('Y','N') )
    ) tablespace myspace;

Maybe you are looking for

  • Insert .oam files that scale without leaving white space below them inside a web page

    Hi All, Does anyone have a way to get .oam files to scale inside a web page without leaving all the white space below them when they are scaled in a fluid web page design? I've done this in other web pages without using .oam files and inserting the w

  • Where is the snapshot feature?

    I read about it a few days ago, embarassing, I don't know how to use it. How do I check my latest version? My latest download of CS3 was in Jenuary, so I got 5.6, right, how do I take a snapshot of a file?

  • Electronic Bank Statement BAI file format

    Hi, I am trying to upload electronic bank statement with BAI file format. When I select the file and executed in FF_5, it is not giving any error. Nothing is happening. The same file I have used I was able to upload it. I am searching where it went.

  • TS4644 ICloud for pc use only

    I currently do not have a device and cannot verify my ICloud account. Is it possible to verify and use my ICloud using only my PC?

  • SIP connection Through PIX

    Hi , i have a CISCO PIX Firewall running version Version 7.2(4)...... i want to know how many connection of SIP can be handled by PIX firewall. what is the default limit. Actually we have a two setup of sip , one with Juniper firewall and one with pi