poseidon wrote:I'd like to be able to edit all contact information on my cellphone.
May not be possible - sorry, not easily possible.
poseidon wrote:It there is no way to tell google to synt multiple organisations right, i only need once the possibillity to search for all those contacts having more than one company and delete them.
If you only need to do it once, there must be a practicable way.
poseidon wrote:unfortunately, exporting to cvs doesn't work, as google doesn't export the fields for the second company at all.
OHHHH! Right you are!!! I must have confused myself. Google is so inconsistent. It has Yomi Name and every other Yomi option, but it doesn't even Export multiple Organisation details. In fact, I now wonder if it even saves / sync's them. It certainly doesn't Export them, EVER. Not in google.csv, nor Outlook (contacts.csv), nor in vCard format.
However, there may still be a way. Don't know your phone, but does it have an Export Contacts to vCard option? Mine (Motorola) does. It only uses vCard V2.2, but it does export at least two Organizations.
poseidon wrote:What else can i do?!?
I would try to Export to vCard, copy to PC, open with Excel. I'm working on some simple code to identify the Multiple Company contacts...
Later: Okay, try this:
Open your vCard file using Excel. You should find all the data in column A, starting at A1.
Insert a blank line before Row 1.
Type-in the digit 0 into cell B1.
Copy and Paste the following into cell B2.
Code: Select all
=IF(A2="BEGIN:VCARD",0,IF(LEFT(A2,4)="ORG:",B1+1,B1))
Copy and Paste the following into cell C2.
Code: Select all
=IF(B2>1,"MULTIPLE COMPANY CONTACT", "")
Select Cells B2 + C2. Using the fill handle (bottom right square block in select area border), drag the formulas vertically down the sheet, all the way to the end of your data column.
Using FInd, or simply by scrolling down, locate the lines marked MULTIPLE COMPANY CONTACT. These lines will repeat from the second Organisation line in each contact, to the end of that contact - i.e. to the next END:VCARD line.
You can now see which contacts have multiple Organizations. How many you have, I have no idea. You may be happy to Manually find and delete each one?
You could try deleting from Google contacts, or from your phone. Not sure which will work best. (When I did something like this, I deleted ALL my contacts and reloaded, but you might not be game...) Manually deleting may still be long and tedious, if you have many to delete. Hopefully, being able to find them is enough?
Otherwise, you could go the vCard Import route... But it has risks. Many vCard implementations reformat your phone numbers to aaa-bbb-cccc format. You may not like it - I don't - but not sure if there's a way around that using vCard. Not sure what other options there are. If you want to use vCard, you can automate further, if you can be bothered?
Let me know...
Al