How can I import contacts into my icloud contacts from an excel file?

I need to add contacts to my icloud contact data base.  Can I import from an Excel file?
Thanks,

Not directly, export from Excel to a .csv file, then convert the .csv file to a .vcf (vCard) file. Then iCloud can import the vCard file.
Here is a free csv to vcard conversion utility.

Similar Messages

  • Due to circumstances I have three iCloud accounts, How can I amalgamate them into one iCloud account?

    Due to circumstances I have three iCloud accounts, How can I amalgamate them into one iCloud account?

    No, unfortunately you cannot merge accounts or transfer any purchased content from one account to another. As I said Apple won't let you do that.
    See also here: http://support.apple.com/kb/HT5622?viewlocale=en_US
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    If you are wondering how using multiple Apple IDs relate to iCloud, see Apple IDs and iCloud.

  • How can I remove my company's iCloud Contacts account from a former employee's iPhone and have the current information removed as well?

    How can I remove my company’s iCloud Contacts account from a former employee's iPhone and have the current information removed from their iPhone at the same time as well? Will just changing the iCloud password be enough? Our company shares an iCloud account for convenience but when someone leaves we don't want the information to stay on their iPhone.

    Changing the password would only block them from accessing the iCloud information.  They would still have access to the local copy on thier phone.  To delete the local information, you would need to go to Settings>iCloud on the phone, tap Delete Account, then choose Delete from My iPhone.  (This only deletes the iCloud account and data from the phone, not from iCloud.)  This, obviously, must be done during the exit process as it requires access to the phone.

  • How can I import video into iMovie from a DVD?

    How can I import video into iMovie from a DVD?
    Thanks,
    Doug Davis

    You can do this with a free app called MPEG Streamclip and a $20 quicktime component from Apple.
    See detailed instructions here.
    https://discussions.apple.com/docs/DOC-3951

  • How can I import music into iTunes from other media .I have music which was downloaded from my Sony Ericcson W715 into "Media Go" and I want to transfer it into iTunes.Is this possible ?

    How can I import music into iTunes from another media.
    I have a library downloaded from a Sony Ericsson W715 into "Media Go" and I want to transfer to iTunes and then into my iPhone 4.
    Is this possible ?
    Chris
    <Email Edited by Host>

    chrisfromgoodworth clatford wrote:
    How can I import music into iTunes from another media.
    I have a library downloaded from a Sony Ericsson W715 into "Media Go" and I want to transfer to iTunes and then into my iPhone 4.
    Is this possible ?
    Chris
    Possibly. Media Go supports a variety of music formats, some of which can be imported in to iTunes and then synced on to an iPhone, however some of its formats cannot be imported in to iTunes.
    See http://mediago.sony.com/enu/supported-file-formats/ for a list of formats supported by Media Go. iTunes for Windows supports MP3, AAC, WAV, and can import and convert WMA files as well. However iTunes does not support ATRAC, or FLAC.
    Furthermore, if some of your music has been bought from an Internet music store it might be procted by DRM. If so it cannot be imported in to iTunes.
    To do the importing you would either drag the music files in to iTunes, or tell iTunes to open them. See http://support.apple.com/kb/ht1347

  • I have Calendar v 7.0 and Entourage 12.3.6 2008 on OS X 10.9.2. I cannot import Entourage events into Calendar - this was never an issue with iCal. Whats happened and how can I import details into Calendar or do I need iCal back?

    I have Calendar v 7.0 and Entourage 12.3.6 2008 on OS X 10.9.2. I cannot import Entourage events into Calendar - this was never an issue with iCal. Whats happened and how can I import details into Calendar or do I need iCal back?

    adamboettiger wrote:
    Sophos and MacKeeper
    There are many reported problems with both these programs.
    Run through this list of fixes in order, will tune you right up.
    They are in order for a reason.
    ..Step by Step to fix your Mac

  • How can I use Automator to extract specific Data from a text file?

    I have several hundred text files that contain a bunch of information. I only need six values from each file and ideally I need them as columns in an excel file.
    How can I use Automator to extract specific Data from the text files and either create a new text file or excel file with the info? I have looked all over but can't find a solution. If anyone could please help I would be eternally grateful!!! If there is another, better solution than automator, please let me know!
    Example of File Contents:
    Link Time =
    DD/MMM/YYYY
    Random
    Text
    161 179
    bytes of CODE    memory (+                68 range fill )
    16 789
    bytes of DATA    memory (+    59 absolute )
    1 875
    bytes of XDATA   memory (+ 1 855 absolute )
    90 783
    bytes of FARCODE memory
    What I would like to have as a final file:
    EXCEL COLUMN1
    Column 2
    Column3
    Column4
    Column5
    Column6
    MM/DD/YYYY
    filename1
    161179
    16789
    1875
    90783
    MM/DD/YYYY
    filename2
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    MM/DD/YYYY
    filename3
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    Is this possible? I can't imagine having to go through each and every file one by one. Please help!!!

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • HT4489 How do I import a csv file of contacts into my icloud contact list?

    Would like to bring outlook contacts from Enterprise Email that have been saved as a CSV file into my icloud contact list.  I keep getting pop up that says it won't allow my process.
    Thoughts

    You would need to do something like create a Gmail account, then export your Outlook contacts to Gmail (see http://office.microsoft.com/en-us/outlook-help/export-outlook-contacts-to-google -gmail-HA001148902.aspx), then export the contacts as a vCard from Gmail (see https://support.google.com/mail/answer/24911?hl=en) and import it to iCloud (see http://support.apple.com/kb/PH3605).

  • I figured out how to snap a still photo of a movie clip, but where then does it go, and how can I import it into my iPhoto library?

    I was working in iMovie and discovered how to take a still photo of a movie clip.  Now I can't find that still photo!  Where did it go, and how can I import it to my iPhoto library?

    Just found out and it is simple.  When you find a frame in your video/movie of which you want a still photo or screen shot, just go to the frame and click on command, shift and the #3 in quick succession.  You will hear a "click" like a camera taking a photo.  The screen shot will then go to your desktop where you can drag it to iPhoto or an e-mail, or anywhere you like.  Also you can rename the screen shot by double clicking on the wording under the screen shot on your desk top. Whew!

  • How can I import to my iMac's Aperture from my MacBook Air?

    Hello!
         I started working with relativily small librarie in my MacBook air, it has a size of 12GB more or less.
         My question is: how can I import/merge this library to my iMac library.
    Thanks.
    Federico

    Whatever you can.  Dropbox.  Ethernet.  Firewire.  Thumb-drive.  I'm pretty sure you can set up an ad-hoc wireless network between the two machines.
    Message was edited by: Kirby Krieger -- link added.

  • How can I replace my Mac and iCloud contacts with the ones in my iPhone?

    I have a new iPhone (iOS 6) and have edited, added, linked and deleted some of my contacts. How can I have THAT list replace all of the other contact lists in the rest of my devices?

    If you are using iCloud on iPhone and Mac, that must be already done. If not, you have to setup iCloud on both devices with the same Apple ID.
    Before you try anything, download an app like "Contacts kit" or "My Contacts Backup" to your iPhone and make a backup of your list and send it via email to yourself.

  • My Vostro is trashed. I salvaged the hard drive and have it in a cage. I was able to save my bookmarks as an HTML file. How can I import them into a new computer? I asked a similar question yesterday and the solution did not work.

    I have the original hard drive in a cage (i.e., I can not boot to it or load applications from it). I can access any file on the old drive from the new computer. I have also saved the bookmark file as an html file. I was given a solution to import from the html file that does not work.
    How can I get my old bookmarks moved to my nes hard drive?

    I plugged my old drive into an identical Vostro and saved my bookmarks per the instructions. Later, when I check the file, it was in html format. While waiting for the replacement laptop to arrive, I put my old (Vostro) hard drive into a case so I could access the files. I have been able to launch web pages from the file bt accessing them through My Documents so I know the file is good. The problem is, I apparently need to convert them into a JSON file in order to use them. There is a set of instructions on the Mozilla/Firefox website but that method does not work.

  • How can I import pictures into an existing event?

    I am loading up my new MAC with various photos on CDs and would like to be able to import them into specific existing events, instead of creating a new event and dragging it to merge with another. How can I do this?  If not, is there an easy way to merge events without dragging from one end of the list to another - hard when you have a couple of hundred events.

    You can't.  All import will go into a new event.  Then you can drag that event onto the Event you want to put the photos in and that will merge the two.
    OT

  • Can't import songs into itunes playlist folders from itunes music folder

    Ive got to be an idiot. ive had my ipod for years and ive yet to figure this out:
    how do i put music into my playlist folders? The only playlists ive been able to successfully create and use are the ones ON my ipod. but that requires me to plug in my ipod every time i want to hear music at home.
    I've created the playlist folders. They are blue folders, found under the playlists tab on itunes. I select music from the music sections, and drag to the folder, but all i ever get is the Circle and line "No" symbol, i never get a plus sign. Ive ever tried popping the playlist folder into a new window and dragging from one window to the other, and its doesn't work. its there some ridiculous safety feature of iTunes that i need to turn off to make playlists or? I can't imagine that something would be this confusing, but i just don't get it.

    Welcome to AD!
    Sounds like you are trying to drag single music files into a playlist folder.
    You can only drag a pre-existing playlist into a playlist folder.

  • How can I import my bookmarks and RSS feeds from Flock?

    I just switched over from Flock because it's too sluggish to use anymore. How do I import all my bookmarks, passwords, and RSS feeds? If I have to do it all by hand, I'm going to cry.
    Also do I need a separate RSS reader to get my feeds in a nice list like Flock does it? I don't really get how Live Bookmarks are supposed to work.
    Thanks. I used Firefox before moving to Flock, so hopefully switching back won't be too painful.

    Hm. This was somewhat helpful. I got my bookmarks moved (although now that I see how many of them I had backed up, I'm not sure that was a good idea).
    Still trying to figure out the passwords... I have my Flock profile folder and my Firefox profile folders open... it looks like I need to copy the key3.db file and the signons.sqlite file from the Flock folder to the Firefox folder, does that sound correct?
    As for the RSS feeds, it looks like I'll need an external reader to make any use of the .OPML file that Flock exported for me. I'm still not really clear on how Live Bookmarks work, exactly. I see how to create and manage them, I just don't get how they function day to day. I have a ridiculous number of RSS feeds, some of which still have half a hundred posts I'm working my way through.
    Any recommendations for a good Firefox compatible feed reader?
    Thanks!

Maybe you are looking for

  • How to add Icons to ALV Reprt?

    Hi, I need to display icons (red, yellow) in my ALV Report in the first column in my report. In my field catalog fieldcat-icon = 'X' has been taken into consideration, but still I am not able to see in my report. In the final internal table that is t

  • Bootcamp on Macbook Air: USB not possible?

    Hi all, I am currently trying to install Windows 7 on my Macbook Air (Late 2010, running with OS X 10.10.3). Since the macbook air doesn't have a DVD-drive, bootcamp should provide the possibility to create a bootable version of Windows on an USB-Dri

  • Excessive heat after 10.5.7 install

    After installing the 10.5.7 combo update I notice that fairly minor utilization causes the macbook to get really hot. For example: Running iTunes has my CPU temperature at about 149f, but activating the Jelly or Stix visualizers brings it up to 190f

  • Loading images inside applet JAR

    Hi This is my issue: I have an applet which contains images inside the applet JAR. I want to display these images in my applet, but apparently due to browser access restrictions, I'm not allowed. My first code was like this: //security restrictions o

  • Why is my ipod nanos screen soo dark?

    it has water damage but we put it in rice and it works likr the sound and all the buttoms excpt the screen wont get brighter i checked blacklight and brigtness still cant find why?