Filter with "AND", and not with "OR"?...

Hello.
When I am in my pictures folder, if I click on two keywords (say "A" and "B"), it will give me all of the pictures where "A" is tagged OR all of the pictures where "B" is tagged. So, if I have 12 "A" pictures and 10 "B" pictures, but only 5 pictures that have both "A" AND "B", the result of the filtering will still be all 22 pictures...
Is there a way to make it so that it filters by (in my example above) "A" AND "B" (instead of "A" OR "B")? So that (again, in my example above) if I had checked to filter out both "A" and "B", there would only be 5 pictures displayed (and not all 22)?...
Thanks!...

In the Find window you would have to go down to "match" and click "If all criteria are met".

Similar Messages

  • OSX Server as spam filter only and not mail server?

    We have a mail server runnning on a Sun RAQ 550. I was wondering if I could set up OSX server 10.3.9 for spam filtering only. That is, filter spam for our domain, but have not have any accounts set up on it. Is this possible?
    Thanks in advance.

    Sorry, don't mean to be rude, but this has been answered about 5 times on this board. This is what the search function is for.
    Anyway, here we go again:
    Yes it is possible. 10.4.x has all you need. For 10.3.x you will have to manually install amavisd, spamassassin and clamAV. How-to has been discussed as well here and on http://www.afp548.com
    Once you have it everything installed, it is a matter of tweaking a few configuration files to forward scanned mail to your actual mail server.

  • How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • Display the second report as modalform and filter with primary key value of first report when you click on first report column link

    Hi All,
    I have two reports.
    1. order report
    2. order detail report
    when you click on the order report column it display the order detail report as a modal form.
    i was done below steps.
    1. In page header i was written the below code
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
    $('#ModalForm1').dialog(
    autoOpen : false ,
    width :470,
    height: 500,
    resize :false,
    function openForm1()
    $('#ModalForm1').dialog('open');
    function closeForm()
    $('#ModalForm1 input[type="text"]').val('');
    $('#ModalForm1').dialog('close');
    </script>
    2. order report.
    3. order detail report
       select * from order_details where order_id = p_order_id;
    region header
    <div id="ModalForm1" title="Ordered Items" style="display:none">
    <p class="msg"></p>
    footer
    </div>
    4. created the hidden item in order detail report.
    5. in order report column attributes i was given link like below.
    javascript:$s('p_order_id','#order_id#');openForm1();
    when i click on the order report column link it passing the row primary key value to hiddent and open the report as modal form. however it is not filter the report with hidden item. it showing the no data found.
    problem is hidden item value is not submitting. once we submit that value it showing the 2nd report with filter data.
    can any help me to achieve above requirement.
    apex: 4.2
    oracle 11g
    Regards,
    Vijay.

    Vijay,
    Issue 1: Your usage of $s() JavaScript API seems to be wrong. For the first parameter, you need to use the name of the hidden page item and not p_order_id.
    javascript:$s('P1_ORDER_ID','#ORDER_ID#');openForm1();
    Issue 2: Seems like you are not setting the hidden page item's value in session state. Assuming your hidden page item is called P1_ORDER_ID, Under "Region Definition" tab of your "Order Detail Report" under "Source" tab, for page items to submit, enter the name of the hidden page item P1_ORDER_ID.
    Thanks!
    JMcG

  • With last update to aperture  photos only show in photos and not in folders. Any idea?

    With latest update my photos are only showing in photos and not individual projects. Though when I mouse over project it gives me number of photos? Any ideas?

    Do you have a filter enabled? Anything other than Showing All in the search field?

  • Using Windows 7 and LR 5  when I look at the Keyword List a certain keyword has 7 pictures but when I check the Library Filter with that keyword 350 pictures are shown which includes the 7 pictures that have the keyword.  Why does the Library Filter showi

    Using Windows 7 and LR 5,  when I look at the Keyword List a certain keyword has 7 pictures but when I check the Library Filter with that keyword 350 pictures are shown which includes the 7 pictures that have the keyword.  Why does the Library Filter showing pictures that do not match the query

    Dan,
    Here's what's going on in the catalog you sent me, "Joel & Caitlin's Wedding".  There is the keyword "gwenn", which is explicitly assigned to 7 pics. But keyword "schwartz" has a number of synonyms, including "gwenn", and it is assigned to 25 pics.  There is no overlap between the two sets of pics. 
    I discovered these two occurrences by doing Metadata > Export Keywords, opening the exported file in an editor, and then searching for "gwenn".  I found two occurrences of "gwenn":
    gwenn
    schwartz
        {gwenn}
    From this, you can see that the keyword "schwartz" has 9 synonyms, of which "gwenn" is one.
    The filter criterion "Keywords Contain gwenn" will match the 7 pics that are explicitly assigned the keyword "gwenn", and it will also match the 25 pics assigned the keyword "schwartz", because that keyword has a synonym "gwenn".
    This illustrates the behavior I mentioned above: The criterion "Keywords contains x" will match against any of a pic's assigned keywords, any of those keywords' ancestor keywords, and any of the synonyms of the assigned keywords and their ancestors.
    So LR is operating correctly here, if not in a way that's easy to understand. 
    It appears that you are using the synonyms of "schwartz" to represent individual members of the Schwartz family.  A better way of representing family relationships is to have a parent keyword "Schwartz", with subkeywords for each family member, e.g. "Gwenn Schwartz", "Joe Schwartz", "Jane Schwartz", etc.  Repeating the family name in the subkeywords has a couple of advantages. LR usually only displays the "leaf" name of a keyword, so instead of showing you just "Joe", it will show you "Joe Schwartz", helpful when there are a number of different people whose first name is "Joe".  Also, if you ever export your pics to other software, it may not understand the LR hierarchy and won't show the parent keywords, so again it's more informative to see a keyword named "Joe Schwartz" rather than "Joe".

  • MR11 Report with document lines and not line items

    Dear All,
    We are currently using the transaction code MR11 to display the open GRs where the system displays them per line item (shows 10 lines for example for 1 PO document).
    We want the report to only show the PO or GR document number (unique) and not the material lines (just one line with the document number so each line would be a different document number). Is there a similar report that can do this or even can the MR11 Trx be altered to achieve this?
    We have tried the filter but it does not seem to work.
    Any help would be much appreciated.
    Regards,
    George

    Hi raghavendra,
    Thanks for your quick response.I know that MR11 is used for account maintenance but it is also a report since it shows the open GRs that have not yet been turned to Invoice Verification.
    The transaction you are suggesting is for open purchase orders and not open Goods Receipt (even though we 101 says Open Goods Receipt).
    Maybe another Selection criteria would be helpful or other report all together.
    Waiting for your feedback.
    Regards,
    George

  • How can I print just a part of the page and not the full page with Adobe Reader v 10.1.2?

    how can I print just a part of the page and not the full page with Adobe Reader v 10.1.2? I need to print a engineering print with lot of information but information is too small in letter size and I don't have a plotter.

    Two ways to print a portion of a page: zooming or using the Snapshot Tool.
    ZOOMING:
    Zoom into the area you want to print.
    Click the Print icon.
    Under "Pages to Print", make sure "Current view" is selected under "More options" (you may need to click "More options" to open it).
    If you aren't satisfied with the preview, try clicking "Fit" under the Size button.
    SNAPSHOT
    Choose Edit > Take A Snapshot.
    Drag a rectangle around the area you want to print. 
    Click the Print icon.
    Under "Pages to Print", make sure that "Selected Graphic" is selected under "More options".
    To enlarge the snapshot to fit the sheet of paper, choose "Fit" under the Size button.
    Hope this helps!

  • Need lightroom 4.4 asmac is 10.6.8 and not compatible with anything higher. Does this come with the creative cloud? Would really like a disc but that doesn't seem to happen anymore. Currently have cs4 and d7100 hence need 4.4 to open raw Any idea

    need lightroom 4.4 asmac is 10.6.8 and not compatible with anything higher. Does this come with the creative cloud? Would really like a disc but that doesn't seem to happen anymore. Currently have cs4 and d7100 hence need 4.4 to open raw Any ideas? Is this now customer service or does adobe have a customer service team . Site not user friendly. Thanks

    Graham Giles wrote:
    Have you seen this type of problem before? I think it could be a serious issue for anyone in a similar position.
    No; but then, I've not had occasion to use TDM. I've been using firerwire drives for over 10 years, both FW400 and FW800, with no issues except a bit of instability using a B&W G3 machine.
    TDM should be safe. Using cautious, manual copying of files from the Target machine to the Host machine should not result in unexpected loss of files or damage to the Target drive's directories. It should behave exactly the same as if it were an external (to the Host) firewire drive.
    •  I don't suppose there is anything I can do to 'put back' lost items from a separate Time Machine drive which has an up to date backup on it.
    There is probably a way to do that - seems to me that's one of the reasons for a Time Machine volume.
    On the other hand, if the Time Machine volume is rigidly linked to the now-absent OS on the original drive, there may be no way to effectively access the files in the TM archive.
    I know that using a cloned drive would work well in this instance.
    I have no experience with Time Machine, so perhaps someone who has will chime in with suggestions.
    With the machine in TDM with the other machine, have you tried running Disk Utility to see if you can effect repairs to the drive?

  • With my iPhone 5s, can I record long voice memo to the cloud and not worry about storage on phone?

    With my iPhone 5s, can I record a long voice memo to the cloud and not worry about storage space on phone?

    You can't add music to the cloud, whether it will show there for streaming and redownloading depends upon what country that you are in. If you are in a country where music is available in the cloud then you don't have to download the music from the store, if you turn Settings > iTunes & App Store > Music (under the 'show all' heading) 'on' then you should be able to stream purchased music in the Music app without downloading it - your phone will need to be online in order to stream, and if using 3G/4G then it will use some of your data allowance.
    If you download an album or a track then it will be downloaded onto your phone. You can't upload music to the cloud from an iOS device. Whether music that you've bought shows for streaming depends upon what country that you are in and if the album or track remains in the store (unless you've subscribed to iTunes Match), and if you are connected to a network.

  • Why is it that when I go to the search screen to find a particular message in a conversation it comes up with the message but when I click on it it takes me to the conversation where the most recent message was sent and not the message I wanted

    Why is it that when I go to the search screen and type in a particular message I want to view, my iPhone finds it but when I click on it it only takes me to the conversation at the most recently thing texted and not the particular message I clicked on?

    Never occurred to me you can search messages that way, thanks.
    Another way to do it is to scroll from the most recent message to the top of the screen and tap load more messages, repeatedly till you reach the one you want.
      I like your method better, but with both methods it refreshes to the most recent message.

  • Problem with iTunes and not transferring media.

    This is differnt since the media it won't transfer has already been on the iPod once before. My iTunes won't tranfer some of my songs (that it did before) and some of my TV shows (that it did before as well) for some reaon or another. I have them set for autosync, no manual transfer, they are the latest episodes of the show, they are checked, and I have tried syncing it about eight times using different methods to get it to sync up. The songs a like every other song and not a problem with them.
    Any ideas?

    Everything corrected.

  • Wifi erratic on 4S after upgrading and not working even after resetting to factory setting. Why should apple isolate itself from their own product problems  Matter of shame when they are not ready to communicate with the customer means they are dead.

    11:22 (7 minutes ago)
    to AppleSupport
    Dear Sir/Madam Since  the wifi is not coming ON how can I open this diagnostic on the iphone  4S am using and having problem with wifi behaving in erratic manner. 
    Am  a professional engineer for projects and am 68 yrs old. At one time was  looking after a production line manufacturing I C's in semiconductors  manufacturing company of the US.
    Have four apple products, one hp laptop and one DELL professional computer at home is used by only two members me and my wife.
    Wife  prefers working on ipad2 or ipad mini while traveling and has iphone 4.  Am using iphone4S with laptop and Dell computer, No apple product is  more than two years old.
    Am having the problem in using wifi on the 4S after it  was upgraded to the latest ios as per the recommendation by your  software of my iphone 4S 
    The wifi card hangs up at  it's own will and even a visit to your authorized service center in  Delhi has not able to help me although they have reverted the ios back  to the
    one supplied with the set. Am a user and not a computer expert but it looks like the wifi card is  not able to some times take the load while working which could indicate  the wifi card is getting heated up.   
    My daughter  who is Masters in 3D Animation is an ardent fan of apple products  working at present in Canada was also gifted by me a 4S about 4 months  back. My daughter-in-law is using iphone4 and an ipad for her professional  works along with a Dell PC in the US. While my son is a fan of samsung  products and does not like an apple product. 
    So in a family we have 7 apple products except MAC laptop/PC. 
    But the fact is, this problem with 4S has  really shaken me up and now it seems your products are deteriorating in  quality while demanding the best pricing structures. 
    Since  this is purely the device and the software of apple problem you may  please replace this set with new one as neither have any time to push  you/ request you after your service centre
    in Delhi told me yesterday this cannot be repaired.   
    The  serial No of my set is DN*****TC0 and was bought from an authorized  dealer and so were the other products from the same dealer in Delhi.  This set is still in showroom condition and
    was never used without a protective cover. 
    Thanks 
    Ashok Dhingra
    D E E Hons B E Tech MBA
    Vasant Kunj Delhi
    <Personal Information Edited by Host>

    11:22 (7 minutes ago)
    to AppleSupport
    Dear Sir/Madam Since  the wifi is not coming ON how can I open this diagnostic on the iphone  4S am using and having problem with wifi behaving in erratic manner. 
    Am  a professional engineer for projects and am 68 yrs old. At one time was  looking after a production line manufacturing I C's in semiconductors  manufacturing company of the US.
    Have four apple products, one hp laptop and one DELL professional computer at home is used by only two members me and my wife.
    Wife  prefers working on ipad2 or ipad mini while traveling and has iphone 4.  Am using iphone4S with laptop and Dell computer, No apple product is  more than two years old.
    Am having the problem in using wifi on the 4S after it  was upgraded to the latest ios as per the recommendation by your  software of my iphone 4S 
    The wifi card hangs up at  it's own will and even a visit to your authorized service center in  Delhi has not able to help me although they have reverted the ios back  to the
    one supplied with the set. Am a user and not a computer expert but it looks like the wifi card is  not able to some times take the load while working which could indicate  the wifi card is getting heated up.   
    My daughter  who is Masters in 3D Animation is an ardent fan of apple products  working at present in Canada was also gifted by me a 4S about 4 months  back. My daughter-in-law is using iphone4 and an ipad for her professional  works along with a Dell PC in the US. While my son is a fan of samsung  products and does not like an apple product. 
    So in a family we have 7 apple products except MAC laptop/PC. 
    But the fact is, this problem with 4S has  really shaken me up and now it seems your products are deteriorating in  quality while demanding the best pricing structures. 
    Since  this is purely the device and the software of apple problem you may  please replace this set with new one as neither have any time to push  you/ request you after your service centre
    in Delhi told me yesterday this cannot be repaired.   
    The  serial No of my set is DN*****TC0 and was bought from an authorized  dealer and so were the other products from the same dealer in Delhi.  This set is still in showroom condition and
    was never used without a protective cover. 
    Thanks 
    Ashok Dhingra
    D E E Hons B E Tech MBA
    Vasant Kunj Delhi
    <Personal Information Edited by Host>

  • How can I transfer photos from an IPhone 5 to an IPad 2 using a cable.  I have tried using the lightning to firewire adapter with my current lead but this only seems to allow a download from the Ipad to the Iphone and not the other way around.

    How can I transfer photos from an IPhone 5 to an IPad 2 using a cable.  I have tried using the lightning to firewire adapter with my current lead but this only seems to allow a download from the IPad to the IPhone and not the other way around.

    The devices are not designed for transfer of that kind.  Use Photo Stream as suggested by another poster, or transfer photos to your computer (a good idea anyway since they will be lost if your device needs to be reset), then use iTunes to sync them to the other devices.

Maybe you are looking for