How can I view or sort or group my CONTACT GROUPS together in Outlook 2010?

How can I view (in my contacts list or address book) or sort/group my CONTACT GROUPS together in Outlook 2010, separately from the individual contacts?

In the Contact folder, use a custom view that shows only Contact groups.  Create the filter on the filter dialog's Advanced tab -
Message Class contains IPM.DistList
Screenshot: http://screencast.com/t/s465l5w16q
Diane Poremsky [MVP - Outlook]
Outlook & Exchange Solutions Center
Outlook Tips
Subscribe to Exchange Messaging Outlook weekly newsletter

Similar Messages

  • How can I view only a subset of my contacts in iOS?

    I have a large number of contacts.  I sync my contacts with iPad, iPhone, and Mac Contacts.  How can I group my contacts, then choose to view only one group?
    I see how to create groups in OSX, although it is a little tedious to begin with to create a field for grouping for each and every contact.  But I cannot see how to use these groups in iOS7, or maintain the grouping field, or view only a subset of all accounts.  My goal is to create a group of personal contacts, like favorites, then see only those contacts by default but have access to all contacts if I need to.

    How can I select only a portion of my screen to be recorded with QuickTime?  I've seen this as an option online but can't figure out how to make the program able to highlight a certain area of my screen to be recorded.
    If you are still using Snlow Leopard, then you can't. This functionality was added to QT 10.1 which runs under Lion.

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • How can I view all downloads?

    How can I view all downloads in Yosemite? I just get sent to Terminal.

    ProfDWD wrote:
    Thanks for your suggestions about viewing downloads, but I'm afraid none of them worked. Whatever I tried, it always defaults to Terminal. You said the downloads folder can be found in the root, but I don't know how to get to get there. Presumably some command in the Terminal program?
    No. You do not want to be using terminal for viewing files. Terminal is a command line interface and best not to be messed with by the uninitiated.
    There is some glitch or problem or bug you are experiencing, If clicking the Downloads folder opens Terminal.
    You can try deleting the downloads folder off the Dock and drag a new downloads folder from your user home folder,  back to the right side of the Dock. The right side Dock icons are simply alias pointing to the parent folder.
    If that does not work My best advise would be to simply try re-installing the OS X on top of your existing OS X,  I suspect this will sort the problem.

  • How can I view submitted responses in their entirety?

    How can I view submitted responses to FormsCentral in their entirety?  The forms were created in Word, made fillable in Acrobat XI, and made submittable in  FormsCentral Plus via our company's website.  I'd like to receive the completed form in its original format rather than sorted by question.  Is this possible?

    For imported PDF files, you currently can not save a response into the original PDF. We will be adding this capability at the end of January (in a few weeks).
    Sorry to have to make you wait.
    Randy

  • What are cpl files and how can I view them in my computer?

    I transfered files directly from my sony camera to my external hard drive and all my videos are in .cpl, how can I view these in my computer?

    jonathan234 wrote:
    .. . how can I view this in my imovie?...
    you ceated an archive - that doesn't mean, you imported them in iM, which is not only for editing, but for achiving too. nor into the iLife suite of apps, esp. iTunes, which is the 'media centre' on MacOS.
    choose Import from Archive. in a preview window you see each 'take'. choose All or select which to import. on import, iM will create so-called Events=groups of clips defined by day of recording.
    After import, iM allows to preview each clip or Event, edit them in Projects, share them to iTunes for playback on your Mac, iPad, iPod, AppleTV, YouTube, VImeo .........
    don't hesitate to watch the tutorials
    http://help.apple.com/helplibrary/#video
    to grasp the 'idea' of iLife, the iApps, iMovie ..
    http://help.apple.com/imovie/

  • How can I do auto-sort-by-name

    In previous PSE(8/9/10), after change to folder view in EO, the files/Photo in folder selected will be sorted automatically by name, but I cannot sort by other methods (no [Sort By]).
    However, in PSE11, folder view has gone. I can sort by Newest, Oldest and Import Batch. but I want to know how can I do auto-sort-by-name?

    Lily~Lily wrote:
    In previous PSE(8/9/10), after change to folder view in EO, the files/Photo in folder selected will be sorted automatically by name, but I cannot sort by other methods (no [Sort By]).
    However, in PSE11, folder view has gone. I can sort by Newest, Oldest and Import Batch. but I want to know how can I do auto-sort-by-name?
    See that other post:
    http://forums.adobe.com/message/4815430#4815430
    I don't think it's possible to sort alphabetically in PSE11

  • How can I view duplicate records in a table?

    Hello everyone,
    My question is very straight forward. How can I view all duplicate records?
    Thanks in advance,
    Sonya

    Easy enough,
    select t1.n1,t1.c1,count(*) as "TOTAL_DUPS" from tableA t1 having count(*) > 1 group by t1.n1,t1.c1 order by count(*) desc
    Tyler

  • How can I view duplicate songs in iTunes 11?

    How can I view duplicate songs in iTunes 11?

    If needed press ctrl-b to reveal the menu bar. Use Shift-View > Show Exact Duplicates to reveal the duplicates. Keep one of each repeated group of files and don't send to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file.
    There is also my DeDuper script if you don't want to do it by hand. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    tt2

  • How can user view Central Person ID by Personnel Number and Vice Versa?

    Dear Experts,
    We are not using Concurrent Employment, but since Talent Management requires to use the Central Person object, we have created the relative objects for the employees. What I want to know is, how can user view the Central Person ID by a personnel number and vice versa easily?
    Thanks,
    Steven

    Not User friedly
    This logic is in Function Group HRTMC_PPOM, screens 0700 and 0710.
    You can copy it to Z and change search.
    In transaction OOFRAMEWORKCUST for scenario TMC_PPOM change Report in "Tab Page in Scenario for each Object Type" from HRTMC_PPOM to new Z*.

  • How can I view all duplicate records

    Hello everyone,
    My question is very straight forward. How can I view all duplicate records?
    Thanks in advance,
    Sonya

    If you want to see duplicate records in a table and how many you have you can do something like this:
    Select all of the columns in the table and look for those having more than one row. If you're more concerned
    about duplicate keys than each column individual column being the same just select the key columns.
    select c1, c2, c3,..., count(*)
    from table
    group by c1, c2, c3...
    having count(*)>1
    order by c1, c2, c3...
    If you eventually want to get rid of the duplicates you can issue:
    delete from table t1
    where rowid not in
    (select max(rowid)
    from table t2
    where t1.c1 = t2.c1
    and t1.c2 = t2.c2...)
    Where c1, c2, c3... match your column list from the select statement above.
    HTH

  • How can I view as "single page continuous" in full screen mode?

    how can I view as "single page continuous" in full screen mode?
    preferences->page display:
    preference->accessbility:

    Not possible.

  • How can I view the USMT recovery key in SQL report

    Hello all,
    Can anyone help me to provide sql query for below link… What I am looking is Just to create a report with all computers that has computer association any type with the recovery key information.
    http://www.windows-noob.com/forums/index.php?/topic/1763-how-can-i-view-the-usmt-recovery-key/
    I have tried below but not working so looking for help…..
    SELECT     TOP (100) PERCENT dbo.v_StateMigration.SourceName, dbo.v_StateMigration.SiteCode, dbo.v_StateMigration.SMPServerName, 
                          dbo.v_StateMigration.SourceMACAddresses, dbo.v_StateMigration.RestoreMACAddresses, dbo.StateMigration.StateEncryptDecryptKey, 
                          dbo.StateMigration.StorePath, dbo.StateMigration.StoreSize
    FROM         dbo.StateMigration INNER JOIN
                          dbo.v_StateMigration ON dbo.StateMigration.SMPServerName = dbo.v_StateMigration.SMPServerName CROSS JOIN
                          dbo.v_UserStateMigration
    WHERE     (dbo.StateMigration.StorePath IS NOT NULL) AND (dbo.StateMigration.StoreSize IS NOT NULL)
    ORDER BY dbo.v_StateMigration.SourceName

    Try this.
    SELECT Distinct
    SM.SourceName,
    SM.SiteCode,
    SM.SMPServerName,
    SM.SourceMACAddresses,
    SM.RestoreMACAddresses,
    SMT.StateEncryptDecryptKey,
    SM.StorePath,
    SM.StoreSize
    FROM
    dbo.v_StateMigration SM
    JOIN dbo.v_UserStateMigration UM on SM.RestoreClientResourceID= UM.RestoreClientResourceID
    join dbo.StateMigration SMT on SM.SMPServerName = SMT.SMPServerName
    WHERE
    (SM.StorePath IS NOT NULL)
    AND (SM.StoreSize IS NOT NULL)
    ORDER BY
    SM.SourceName
    http://www.enhansoft.com/

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • How can I view my iCloud contacts from someone else's iPhone? I don't want to change their phone settings.

    Yesterday I ran into a problem that was eye opening to say the least. I could not not access my contacts in order to find a friend's phone number. No one remembers phone numbers any more. God knows I don't.
    I was on a jetski and it broke down. I was stranded at a dock miles away. I needed to contact my friend to tell him (a) I'm ok, (b) where I was, (c) to bring a tow. Of course I had no phone on me because it would have gotten soaked.
    People were kind enough on the dock to let me use their smart phones to attempt to retreive the phone number and call for help. But I quickly discovered that it is impossible.
    On an iPhone, I tried to use their Safari browser to go to www.icloud.com. When you do that, it simply redirects you to the apps. But it isn't my phone, and their apps are logged in to the owner's accounts. I wasn't about to update the settings in a stranger's phone.
    One guy let me try his iPad with Cellular. Same problem as the iphones. It would not let me use www.icloud.com. It insisted that I use the native iOS apps.
    On an Android, www.icloud.com would simply refuse to work. It would say it was not supported.
    The question I have is: How can I view my contacts from someone else's smart phone in an emergency situation?
    Second question: Why can't I use www.icloud.com on a smart phone's web browser like I can on regular computer?
    I got lucky. I happened to know my mom's home number. Many hours later she was home and I was able to use a phone to call her. She brought up www.icloud.com on her home computer, logged on as me, and read me the phone number I was seeking. But what are the chances of being able to call a trusted person who has access to a computer to do this for you?

    Without "pretending" to be yourself on the other phone (change settings) there's nothing else you can do.
    iOS devices are meant to be single user and can't view iCloud.com the same way a Mac or PC can do.
    You need to find a desktop or laptop machine (Mac or PC) to log in at iCloud.

Maybe you are looking for

  • Error 500 - Internal server error when trying to upload images to website

    I have been unsuccessful in my many attempts to upload images to the bustalk website. I keep getting an Error 500 - Internal server error message asking me to try again later but the fault is still repeated.

  • I appeal to have a US edition of Fireforx although I clicked the UK tab how do I change it

    When I installed Firefox it ticked the UK edition. Now it is working I find that it has developed into the US edition which is causing a few problems

  • AFP version in Leopard

    What version of AFP is used in Leopard? What are the AFP functions 76 and higher? Are these documented somewhere? - Alex

  • Ftp plugin problem

    Formerly working Lightroom 5 ftp plugin now returns the following error message: Unable to export. Cannot upload because Lightroom could not create the destination directory. Using a standalone ftp client with the same settings works fine. Any help a

  • CO-PA requirement gathering

    Hi, We are in planning to implement CO-PA for our client. We are not sure what we need to collecte business requirements from the client at this level. They have SD, MM and PP modules together. Could any one one please help this requirement gathering