AndyMax 0 Posted September 14, 2008 Share Posted September 14, 2008 Is there a recommended method for importing notes from Outlook 2007, and from Palm Desktop? Can it be done all at once or does it need to be manually done note by note? What about "private" encrypted notes? Thank you! Link to comment
rheostaticsfan 0 Posted October 16, 2008 Share Posted October 16, 2008 Gosh wouldn't that be nice. I've been using outlook/palm for notes for almost 10 years and have accumulated quite a few I'd love to get into evernote.I'm not aware of any automatic or semiautomatic way though. Anyone? Link to comment
nickgonzalez 0 Posted October 16, 2008 Share Posted October 16, 2008 Yes. I agree. We need a solution. I have several years worth of notes and tasks in my Palm Trep 755p. I want to transfer them to evernote, but I dont want to do it one by one. I do know that I can save my memos to txt format (comma separated, tab separated values and and txt. Hopefully there will be a solution quick).Nick GTheoloTech.com Link to comment
glen_dc 0 Posted October 21, 2008 Share Posted October 21, 2008 That's what I did:- go to palm desktop, select all notes- go file/export, select csv, uncheck "private" check box, click on ok. You will get comma separated file that looks like"my note beginscontinues..continues...ends","my category"- you can double click on csv file - it will bring you MS Excel. Sort the second column - you will get distinct list of your Palm categories. - in Evernote create note book for each palm directory with the same name- now, the tricky part. You write script on your favorite language to parse csv file. Each entry (row in Excel) has two parts - body and category. Put body (part one) as a separate file into a subdirectory with the same name as category (part two). More on this later...- go to Evernote client. select a notebook, select a subdirectory in your current directory and import. Yes, it's category by category, but I wanted to merge some old categories into one Evernote notebook. Back to the tricky part. In my case it was Ruby. I do not know what's your skill set and how comfortable you are with bash, perl, python or whatever. Essentially, script should read csv, parse csv entry and output the entry into separate file. I recall that Java has bunch of open source csv readers and am sure other languages have cvs parsers. But if you do not want to write any code, I can post my ruby file somewhere or email it to you, but I need some time to polish it, it's too hack-ish, test on both Mac and Windows. On the other hand, the Evernote should provide import from csv file out of box - it's not a big deal. Link to comment
glen_dc 0 Posted October 22, 2008 Share Posted October 22, 2008 Update to my prev post:- on Mac, Palm Desktop does not export to csv, only tab-separated, much easier to do it on Windows- on Windows XP, I had to use cygwin's unix2dos to clean the exported file up. Palm desktop added \n without \r, parser treats it as an error- I used fastercsv gem, worked just fine - gem install fastercsv- ruby script that reads csv file, creates directory for each category and separate file for each note is: #!/usr/local/bin/ruby -wrequire "faster_csv" i = 1 FasterCSV.foreach("mypalm.csv") do |row| FileUtils.mkdir_p(row[1]) File::open( "#{row[1]}/#{i}.txt", "w") { |io| io << row[0] } i+=1 end Link to comment
drmrbrewer 11 Posted October 23, 2008 Share Posted October 23, 2008 I'd love to see an easy way to import Palm notes (one that doesn't require any coding skills on our part!)... wouldn't have thought it too difficult to have a CSV import feature in evernote... just stick each comma separated block of text into a separate note... not rocket science... no need to reverse engineer the Palm memo archive format.Mike Link to comment
jwardneosoft 0 Posted October 28, 2008 Share Posted October 28, 2008 I can't believe it. They don't have a way to import years of work from the worlds most popular personal information management software? They require users to be programmers?And the script you need to write creates a directory for every note????Wow, that's just bizarre... Link to comment
arpnix 0 Posted December 2, 2008 Share Posted December 2, 2008 This is the process that worked for me with windows Palm Desktop 4.1.4.I had problems with the "csv" export from the palm desktop until I used "NoteTab Light" http://www.notetab.com/ to convert files to ASCII... I'm sure there are lots of other ways to accomplish this, but it was quicker to just do these steps than try to optimize the process any more for my approximately 350 notes in 10 categories.palm desktop-memos application-highlight all memos in category, menu file, choose export--export type csv, export just fields memo and categorynotetab light-open .csv file-modify menu, chose convert to ascii text-save file- copy to linux box into own folder- rename file to mypalm.csv- run the ruby script (had to install fastercsv manually for this script to work)-- the script creates text files (1.txt, 2.txt, etc.) for each memo- copy folder back to windows machine since evernote import doesn't work from network pathsevernote-create new notebook for category-note menu, choose import, file import wizard--provide location for folder on windows machine, use import once option#!/usr/bin/ruby -wrequire "faster_csv" i = 1 FasterCSV.foreach("mypalm.csv") do |row|# FileUtils.mkdir_p(row[1]) File::open( "#{row[1]}/#{i}.txt", "w") { |io| io << row[0] } i+=1 endthe "FileUtils.mkdir.." line gave an error for me on my linux box: uninitialized constant FileUtils (NameError)so I just did each category one at a time and commented this line out.I don't really use ruby much- "gem" wasn't installed so I had to install "fastercsv" manually http://fastercsv.rubyforge.org/It is absolutely ridiculous that we have to go through this level of effort to get our palm memos imported... a few days coding could add this feature for everyone. Link to comment
ntalbot 0 Posted March 12, 2009 Share Posted March 12, 2009 Has anyone come up with a way to import Outlook notes into Evernote that mere mortals can understand?I can't get an iPhone until I am sure I can import my hundreds of notes from my Palm Tx.Neil Link to comment
BurgersNFries 2,407 Posted April 2, 2010 Share Posted April 2, 2010 Has anyone come up with a way to import Outlook notes into Evernote that mere mortals can understand?I can't get an iPhone until I am sure I can import my hundreds of notes from my Palm Tx. Neil Resurrecting this old thread since I just imported 470 notes/memos (in a matter of minutes) from my Palm TX to Evernote via Outlook 2003. You have to sync the Palm to Outlook. Once the notes are synced to Outlook, I selected them all, right clicked & clicked "Add to Evernote 3.5". Wish I'd found this ten months ago. http://palmdoc.net/?p=1772 Link to comment
kennethmgreen 1 Posted April 2, 2010 Share Posted April 2, 2010 Has anyone come up with a way to import Outlook notes into Evernote that mere mortals can understand?I selected them all, right clicked & clicked "Add to Evernote 3.5". Wow. That's cool. Thanks for updating this thread.Except.... when I try this (tried with 2, then one Outlook Note) nothing happens.[update] - the toolbar button seems to be working as expected. But right-clicking and selecting "Add to Evernote 3.5" does nothing.Outlook 2007Evernote 3.5.2.1764Windows XP SP3 Link to comment
BurgersNFries 2,407 Posted April 2, 2010 Share Posted April 2, 2010 FYI, I'm also using EN 3.5.2.1753, Win XP Pro SP3 but using Outlook 2003. Does the Outlook clipper allow you to add emails to EN from Outlook 2007? Link to comment
metamatt 0 Posted March 5, 2011 Share Posted March 5, 2011 Actually, I wrote a utility to import notes from Palm Desktop, which you can find at http://www.maddogsw.com/evernote-utilit ... -importer/.Sorry, can't help with Outlook. Link to comment
markemark 0 Posted March 5, 2011 Share Posted March 5, 2011 I selected all my notes in Outlook 2007 and clicked Add to Evernote 4. The dialog asks for tags, I click Ok. "An error occurred while processing clipped data (import failed: MISSING_NOTE_TITLE)."I reviewed my two hundred notes and could not find any with missing titles. Anyone have any suggestions? Link to comment
PFNikolai 0 Posted April 4, 2011 Share Posted April 4, 2011 There does not seem to be a good solution available so I manually copied and pasted. It went relatively quick using keyboard shortcuts:__ open Outlook Notes and Evernote side by side so can click back and forth (resize windows)__ click New Note on Evernote window to open blank Evernote__ double-click first Note on Outlook window, press Ctrl+A > Ctrl+C > Esc to select all, copy, and close__ right-click in text box on Evernote and select paste__ click in "Click to set title..." box to populate with first line of Note__ click New Note to save that note and open blank Evernote__ double-click next Note on Outlook window, press Ctrl+A > Ctrl+C > Esc to select all, copy, and close... keep repeating until finished Link to comment
fvoelling 0 Posted June 10, 2011 Share Posted June 10, 2011 Hi,Just successfully transferred all my notes from Outlook 2007 to Evernote 4.3.1.4479 running on Vista (selected all notes in Outlook with Ctrl-A and clicked on "Add to Evernote 4" button in upper right hand corner of Outlook (this was added after installing Evernote, think I had to relaunch Outlook for button to show).Frank Link to comment
JayinToronto 0 Posted August 29, 2011 Share Posted August 29, 2011 How did you import Notes (I assume "Memo") from Palm. Or was it note associated with contacts? Either one (or, ideally, both,) how? Link to comment
heather 604 Posted August 29, 2011 Share Posted August 29, 2011 As listed above, this works well for users:http://www.maddogsw.com/evernote-utilit ... -importer/ Link to comment
HEAC 0 Posted January 22, 2012 Share Posted January 22, 2012 As listed above, this works well for users:http://www.maddogsw.com/evernote-utilit ... -importer/Hiii !... could You send me the new link to the tool.Thanks !! Link to comment
Level 5* jefito 5,598 Posted January 22, 2012 Level 5* Share Posted January 22, 2012 Hiii !... could You send me the new link to the tool.The link seems fine. Link to comment
jeen shah 0 Posted January 31, 2012 Share Posted January 31, 2012 This is old thread but i think now i have found something which is new and very helpful for all that kindl of things http://www.outlookimport.com/ I think this site expalins better for all of the above questions? Link to comment
MartinR 0 Posted May 7, 2012 Share Posted May 7, 2012 Hello!I already imported my palm memos into my Android cel.But I also have lots of palm notes (drawings) in my Palm and cannot find how to import them to my cel.I guess Evernote should be the app which will manage this kind of note because you can have handwriting notes on it.But I don't find how to export them from my Palm to my cel.Anyone know how to do it?Thankyou! Link to comment
GaryGoddang 0 Posted August 21, 2013 Share Posted August 21, 2013 Import Palm Desktop TASKSOK, I don't know that one can literally IMPORT the CSV file, but Palm had a useful function.Tasks normally EXPORT to a TDA file, either Tasks or To-Do (same thing, probably because Palm upgraded their App and changed To-Do to Tasks). Select ALL tasks, or select one Category at a time.Right-Click.Send-To.MS Excel.I only have MS Office 2000, because I'm cheap and I don't need all the excess Corp/Exchange/Outlook functions. I found Palm hung on a Switch To ... and Retry ... dialog until I opened MS Excel. Then Palm still hung for a few minutes.When Palm freed up and allowed me to try again, with Excel open/running, that SendTo command in Palm opened a new Excel window with all TASKS imported.Rows and Columns had to be adjusted.Then I did deleted the top "Title" row (Tasks or To-Do), now the top row was the correct Headers. I changed the last column header to Categories.Data-Sort by Categories.I wound up deleting the Priority 1-5 column and did some resizing on the columns. Pasting into Evernote keeps the expanded "too-wide" cells as Excel creates them.Instead of trying to save that as a CSV and import into Evernote, I only had 24 Tasks --- some of which were only valuable as Notes/Memos misplaced. Some were no longer relevant, so I deleted the Rows.The rest that I wanted, I simply selected the entire Row or just the first 2 or 3 cells. Copy and then Paste into New Note in Evernote.I placed them in Categories previously established by importing Palm Memos, and then added appropriate Tags.Done. about 20 min.====================For Palm Memos, I used the online App by Maddow or Maddox that several people have mentioned and linked, but there's a WARNING.I experienced a problem which others may not experience, depending on your config.My default browser is Firefox, not IE. The app that is Palm to Evernote, here's what it does. It imports the CSV file that is exported by Memos, but runs a script that does 2 things. Imports the Memos to this programmer guy's server (he says just trust him, he's not trying to steal info, just imports to do the conversion). He also opens a window that asks for Evernote login. I saw his page and it was all "techy", like Sourceforge, so I trusted him.But my problem was that this App attempted to open an upload/transfer connection via my Firefox, which immediately crashed. When I tried to restart FF, Windows started slamming it with DEP errors (Data Protection = harmful rogue program).When I temporarily changed my default browser to Internet Explorer (8), the import Memos to Evernote process went fine.I couldn't get FF to open without crashing immediately. After minor attempts to fix/reinstall, I eventually had to completely UNINSTALL Firefox, download the latest version, then install again. I did not uninstall any of my Profiles, Extensions, Settings, Bookmarks, etc. I did manually go through and delete old Plugins from folders in Program Files (which were probably old and moldy since early version of FF. I went to the Registry and deleted some Mozilla Firefox keys, after exporting them for safety. I only deleted subkeys with values that I felt could have been a problem (looked plugin related). Of course Cache was deleted too.Also, the first attempt to reinstall used version 23 (i think) but the final time was version 23.01.Again, I don't know precisely.WHICH part of that hardcore removal before reinstall long trek was "the fix", and maybe the version upgrade was a factor.CONCLUSION: If you use that Maddow/Maddox app listed on this thread, change your default browser to IE first, because IE is "promiscuous" enough that it's willing to run that kind of script, but Firefox isn't and/or Windows wouldn't allow FF to behave with that level of "promiscuouity". (Promiscuous is actually a technical term that refers to setting up a network card in Linux to a mode where it accepts all packets sent to anyone, instead of packets only addressed to that cards MAC, therefore acting as a "sniffer" to try to hack WIFI by snooping on other people's communications. I borrowed that term to describe IE and it's ActiveX tendencies to "run anything".) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.