Import CSV into Numbers under European Settings?

SUMMARY: Anyone know how to import a CSV into Numbers on the iPhone when under European settings?
DETAIL:
The iPhone version of numbers seems to have difficulties reading any CSV if the user's device is on a setting where the decimal separator is a comma (e.g. 12,00) (such as most of Europe). Interestingly the iPad version does not have this problem.
For example HelloWorld.csv containing
Hello,World
imports as all one line rather than in two columns.
UTF8 of UTF16 doesn't seem to make a difference.
Changing the comma to a tab doesn't make a difference. (Numbers won't import .tsv files either.)
Adding quotes to the fields doesn't help.
Suggestions on creating a file that Numbers can import?

On the iPhone, go to Settings, then General, then International, then Region Format. Set that to whatever it is on the iPad and then the CSV file should import the same on iPhone as it does on iPad. Not sure what else it will change, but if you have it changed on your iPad already, maybe it won't be a problem for the iPhone. And you can always change it back after importing the file I guess. Good luck.

Similar Messages

  • Import CSV into Oracle?

    Is there a simple script or series of SQL statements to import a CSV into either a new table or an existing table rather than using a utility? There must be some way to do it in SQL or PL/SQL.

    That's the problem with using tools, like TOAD etc. to help you do stuff, as it doesn't help you to learn the basics.
    Once you know how to do stuff from SQL*Plus then, fine, use a tool to do nitty gritty for you. The key to learning such a vaste area of expertise is to have a really good understanding of the basics first. So many people just use tools and struggle to do things because they just don't understand the underlying basics.
    External tables are almost as simple as creating a basic table but you specify where the data is coming from and what the layout of that flat file is. After that you can just query it.
    ;)

  • Importing Contacts into Numbers?

    Does anyone know why each time I drag a contact into numbers it creates a new Table for each contact. This adds lots of unnecessary additional columns, all redundant from the first import. Would like to just have each contact import onto the one page and into appropriate fields. I spoke to Apple about this and they seem to think it's either a bug or nobody has ever wanted to do this even though this option is detailed in the help info in numbers.

    You probably want to use the Feedback feature of Numbers (under the Numbers menu) to report this bug. Meanwhile, I can offer a work around. Discovering that each drag/drop resulted in a new table, I selected 2 contacts - they were placed in Numbers in a single table. So your work around is to create a group in Address Book and then select all the members of the group at once. This is feasible as long as you don't anticipate adding people to the sheet later.

  • How to remove duplicate phone numbers under iMessage settings?

    I've been using iMessage for a while now and a lot of my friends have brought to my attention that every iMessage I sent showed it came from my email rather than my phone number. So I signed out of iMessage and tried logging back in using my phone number and it would not work, saying the activation did not go through. So I tried again and again throughout the day and it finally worked eventually. The problem is I get a duplicate (lots of it) of my phone numbers, I'm guessing from my countless attempts at signing in. How do I go about removing all the duplicates that are grayed out? Also why do the last three have tick marks next to them? How do I make it so that only one of them is tickmarked and delete the rest of the duplicates. I've provided screenshots below.
    Also, "waiting for activation..." has been shown under the settings for almost the whole day. How long does this take?

    I've tried signing out and back in again. It doesn't do anything. I still get the unnecesarily long list of duplicate phone numbers and have 2 or 3 of them randomly tick marked. I've tried this multiple times, it doesn't get rid of them at all. As far as I'm concerned, my friends do receive my iMessage from my number rather than my email. I just find it a nuisance to have such a long list of my phone number 25 times over. I don't think it affects anything though, but any way to get rid of them would be great.
    Also, it's been 3 days and it still says "waiting for activation" on my iMessage and Facetime settings. How long does this take? As far as I know, my friends have told me iMessaging with me is flawless but I'm confused as to why it's still trying to activate.

  • Import data into Numbers from web?

    Is there a way to import data from the internet directly into Numbers without programming/writing an applescript or using a different program?
    Can you do this while using only Numbers and the web?

    And how is Numbers to know how to extract the exact data you want from an external source, unless that source is in a format familiar to Numbers, which HTML isn't? For an automated process like this, you will need scripting, and that means learning to program/understand scripts.
    For example, here's some HTML code from a web page that includes volume data for one symbol:
    <td class="mbi_left" align="left" width="35%">BM&FBOVESPA SA</td><td align="right" width="10%">12.37</td><td align="right" width="10%">0.22</td><td align="right" width="10%">1.81</td><td align="right" width="20%">11,611,700</td><td align="right" width="15%">09/18</td>
    Numbers can't interpret this without being told exactly what to extract. Also, Numbers doesn't go out to the web on its own at fixed intervals (as I suspect you may want) without a program telling it what to do. This is just a spreadsheet after all.

  • Import csv into iCal

    Is there any way to import a csv file into ical? You can import a csv into address book but not iCal. For example try putting this in your calendar. http://graphics.fansonly.com/schools/wash/graphics/csv/washfb_2009.csv

    You can use Applescript. Below is a sample that you can modify. Copy it into Script Editor and try it.
    AK
    <pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">--Convert CSV file to iCal events
    --Prompts for file, then processes
    --expects date,start time,end time,event name,xxxx,calendar name
    --eg 12/01/2006,20:30,22:00,Water Committee,,TestCal
    --change the various text item ns if data order in a file line is different
    --blank lines skipped
    --if other data present (eg location, notes ...) add a line in the tell calendar Calno loop
    --to include it eg set location to text item 5 of ThisLine
    set OldDelimiters to AppleScript's text item delimiters
    set LF to ASCII character 10
    set theFile to choose file with prompt "Select CSV calendar file"
    set theLines to read theFile
    set AppleScript's text item delimiters to {LF}
    set theLines to paragraphs of theLines
    set AppleScript's text item delimiters to {","}
    repeat with ThisLine in theLines
    if (count of ThisLine) > 0 then --ignore blanks
    set StartDate to date (text item 1 of ThisLine & " " & text item 2 of ThisLine)
    set EndDate to date (text item 1 of ThisLine & " " & text item 3 of ThisLine)
    set CalName to word 1 of text item 6 of ThisLine
    tell application "iCal"
    set CalList to title of every calendar
    if CalName is in CalList then
    repeat with CalNo from 1 to count of CalList
    if CalName is item CalNo of CalList then exit repeat
    end repeat
    else
    set NewOne to make new calendar at end of calendars with properties {title:CalName}
    set CalNo to 1 + (count of CalList)
    end if
    tell calendar CalNo
    set newItem to make new event at end of events with properties {start date:StartDate}
    set summary of newItem to text item 4 of ThisLine
    set end date of newItem to EndDate
    end tell --calendar
    end tell --iCal
    end if
    end repeat
    set AppleScript's text item delimiters to OldDelimiters</pre>

  • Importing .txt into numbers causes extra unwanted rows solution?

    I have a text document that imports into numbers like this:
    Name Age Eyes Likes
    A B C D
    1 Jack 4 Brown Cartoons
    2 Playing
    3 Laughing
    4 Jill 7 Blue Dancing
    as you can see, Playing and Laughing are in separate rows. what can i do to the .txt file to make my numbers spreadsheet look like this:
    Name Age Eyes Likes
    A B C D
    1 Jack 4 Brown Cartoons, Playing, Laughing
    2 Jill 7 Blue Dancing
    thanks in advance.

    Run this cript:
    --=====
    property nb : 3 (* count of fields in a record *)
    property liste : {}
    --=====
    on run
    set theFile to choose file "Select the text file" of type {"public.plain-text"}
    my nettoie()
    set tt to (read theFile)
    set tt to my remplace(tt, quote, "")
    set tt to my remplace(tt, "; ", "")
    set tt to paragraphs of tt
    set nbFields to count of tt
    set nbRows to nbFields div nb
    if (nbRows * nb) < nbFields then set nbRows to nbRows + 1
    repeat with i from 1 to nbRows
    set itm to item (1 + (i - 1) * nb) of tt
    try
    repeat with j from 2 to nb
    set itm to itm & ", " & item (j + (i - 1) * nb) of tt
    end repeat
    end try
    copy itm to end of my liste
    end repeat
    set tt to my recolle(my liste, return)
    set the clipboard to tt
    my nettoie()
    end run
    --=====
    on nettoie()
    set my liste to {}
    end nettoie
    --=====
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    --=====
    on remplace(t, d1, d2)
    local l
    set AppleScript's text item delimiters to d1
    set l to text items of t
    set AppleScript's text item delimiters to d2
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end remplace
    --=====
    Then paste the clipboard in a table of Numbers.
    Yvan KOENIG (from FRANCE mercredi 11 février 2009 21:12:32)

  • Import CSV into existing document

    Numbers seems to do fine at importing a CSV file and creating a new document from it, but I can't seem to find any way to import a CSV file into an existing document as a new table.
    I'd like to end up being able to import several CSV files into one document.
    So far I have tried:
    1) Import -> Choose: the Open dialogue greys out any csv files
    2) drag-and-drop from the Finder to an existing Table
    3) drag-and-drop from the Finder to the Sheet sidebar
    4) drag-and-drop from another document to the sidebar
    At the moment it looks like the only way to accomplish this is to do an import to a new document, and then cut and paste the entire table from the CSV document into the main document where I want all of these tables to end up. I find that a bit kludgy.
    Does anyone know of a better way to do this?

    Matthew,
    Open CSV file in Numbers; CTRL-Click tableName in Sheets Pane and Copy, then CTRL-Click in Sheets pane of destination document and Paste.
    Not exactly what you wanted but it just takes a few seconds.
    Jerry

  • Import CSV into the Database Tables

    Hello All,
    I have a requirement to import the CSV coloum values into the backend table.
    It would be great if anyone could help me out with the procedure in APEX.
    Looking for response.
    Regards,
    Sandeep Reddy

    hi,
    i have tried a similar kind of stuff..,
    check the link_Import data in excel to database table for the process and steps..,
    for more information you can check the forums; http://forums.oracle.com/forums/thread.jspa?threadID=2206363&start=0&tstart=0
    i hope you get your solution there.
    Regards,
    Little Foot

  • Importing CSV into table - problem with tab-deliminated files

    Hi All,
    I have written an application based on well-known Uploading excel sheet using Oracle Application Express (APEX) example from the following site:
    http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/
    All works as expected...
    However the code in the example assumes that the CSV file is really comma-delimited file:
    v_line := REPLACE (v_line, ',', ':');
    Now, I have noticed that when different people use "Save as CSV" function in Excel they sometimes get different results. For example sometimes you get a file which is semicolon delimited (';').
    However, I need to process a file which is tab-delimited file. Thinking is was quite simple task I simply change the above line of code to:
    v_line := REPLACE (v_line, chr(9), ':');
    where chr(9) is the ASCII code for horizontal TAB
    I was very surprised however to see that if I process the tab-delimited file with the above line I receive an extra character between EVERY CHARACTER. To give you an example:
    1) When processing a normal comma or semicolon delimited file using v_line := REPLACE (v_line, *','*, ':'); or v_line := REPLACE (v_line, *';'*, ':'); I receive correct results:
    SQL> select contract_value,dump(CONTRACT_VALUE) from sdpr_upload;
    CONTRACT_VALUE DUMP(CONTRACT_VALUE)
    354000 Typ=1 Len=6: 51,53,52,48,48,48
    555569 Typ=1 Len=6: 53,53,53,53,54,57
    2) When processing a TAB-DELIMITED file using v_line := REPLACE (v_line, chr(9), ':'); I get this:
    SQL> select contract_value,dump(CONTRACT_VALUE) from sdpr_upload;
    CONTRACT_VALUE DUMP(CONTRACT_VALUE)
    3 5 4 0 0 0 Typ=1 Len=13: 0,51,0,53,0,52,0,48,0,48,0,48,0
    5 5 5 5 6 9 Typ=1 Len=13: 0,53,0,53,0,53,0,53,0,54,0,57,0
    Now the BIG QUESTION ARE:
    Where do these 0's come from? How to get rid of them?
    Many thanks for any pointers!
    Pawel.

    Thanks for the tip, however the problem is to actually load the tabbed file.
    I think the issue lies somewhere else. I see some weird characters in the export file when viewing it in Linux vi. So I am guessing this could be some unnicode conversion problem rather than any issue with the application or script.
    Is there anyway one could upload a UNICODE text file into Apex?

  • Error when importing .csv into Address Book. Address,Street etc doesnt show

    Can anyone help me?
    I saved my excel contact list to either Tab Delimeted .txt or .csv file. Then when i import in Address book as Test file, it does not import the address. And when i click on the tabs to import, it keeps loading and hang.
    Even if i dont import the address line, those underlined were not shown even though detected.
    My columns are:
    First / Last / Job Title / Company / Address / Street / City / _*Postal Code*_ / Country / State / Phone / Work / Phone Fax

    Are you trying to import from within the AB application, menubar File > Import > VCards? If so, what happens if, in Finder, you just double-click on the VCF file?

  • How to import csv-file in Numbers 3.2.2.

    I start using Numbers in stead of Excel. I would like to import csv-files from my bank, but when I open the csv-file in Numbers, everything is imported in the same cell. I composed a testfile: 01/08/2014,”text”,”more text”,”even more text” in Pages, exported to a textfile and changed the extension from .txt in .csv. It did not help, everything was in the same cell. What must be changed to become successful in importing csv-files? I am using Numbers 3.2.2. and an iMac with 2,8 GHz Intel Core i7 processor and 8 GB 1067 MHz DDR3 memory with OS X 10.9.4.
    Thanks, Joan Voormolen

    You can do this using Pages. Without using outside scripts or functions. The Pages Find/Replace function will let you change the delimiter on the data in your file.
    Open the file in Pages. Click Show Invisibles. (this will show you the delimiter used in the file)
    If you see a * as the delimiter, that is a space. Some data files are space delimited. This is a really poor way to delimit numerical data files.
    If you see a fat arrow to the right, the file is Tab delimited
    Obviously, a comma is not a hidden character. Some files are comma delimited
    Whatever else might have been used as a delimiter (for example a semi colon is sometimes used) will be apparent.
    The delimiter should be something that is not used anywhere else in the "data"... text, numbers, etc., you want to delimit. Numbers considers a comma as a valid delimiter for files with the suffix .csv . It considers a tab as a valid delimiter with files with the suffix .txt . It does not consider spaces a valid delimiter in with any file suffix. But some programs use odd delimiters (semi colon, colon, double spaces, etc) as delimiters.
    Use the Find command, then Find/Replace as you need to create that delimiter numbers recognizes. Let's say a semi colon was used as a delimiter. Enter the current delimiter (semi colon)  into the Find box. Pages should highlight all the instances of your entry. Enter a comma (to create comma delimited data file) in the Replace box. You should now see a comma as the delimiter.
    Important Don't forget, any other comma used in the file will also be considered a delimiter. (a comma in 1,000 for example). So check the data. If you see a comma used another way you will want to eliminate that BEFORE you do the "comma as delimiter" replacement. If you have 1,000, do a find/replace with comma as the find, nothing as the replace, first. THEN do the replacement of the semi colon.
    Now comes the "tricky" part from what I could see. You want to save this new file with a suffix of .csv. (Export the file) Numbers will only open a comma delimited file with separated data (by comma) if it's suffix is .csv. Pages only gives you limited export options and puts the file suffix on for you automatically. CSV is not one of the options!
    Choose Text. Pages will name the file .txt. Quit Pages. Go to the file on your desktop (or wherever you saved it). Change the file suffiix from .txt to .csv.
    That's it. Open the file with Numbers. Numbers will create a separate column for everything between the comma's.
    You can use this same method to alter your data file before you import it into Numbers. For example, one file I wanted to import had time=xxx . I only wanted the actual time, not the text attached to it, in my spreadsheet. I did a find/replace with "time=" as the find. A comma as the replace. Even though "time=xxx" is one "word", Pages identified the "time=" within the word to allow the replacement.
    Numbers does not provide a "choose delimiter" function when opening a file. Instead it automatically uses the standard delimiter based on the file suffix. CSV means Comma, so if the file is named .csv it will only look for and use a comma as the delimiter to put the data into separate columns. I believe .txt uses only a tab as the delimiter. In the above example you could find/replace to a Tab. Then Export to Text. And numbers will open the data into columns the way you want, without the extra step of renaming the file on your desktop.
    While some files use a second space (ie two in a row) as a delimiter that's a nasty way to delimit. You always want a specific delimiter that is not used within the data element.
    The above is to import numerical data into separate columns. You could use the same method to manipulate a file that contains text. Let's say you had a file with the suffix .txt. In the file are names and addresses.  John Smith 246 Rose Road . You want Name in one column. Address in another.  Look at all the spaces, which ones should be delimiters which not? Are there any delimiters in the file?
    If you open with Pages and choose show invisibles you can see. You might see John Smith --> 246 Rose Road. (the --> will look like a fat arrow in Pages). Numbers will open this file, IF it has .txt as the suffix, based on the Tab,  with name in one column, Address in another.
    Or you might see John*Smith**246*Rose*Road. Even though the creator of this intended two spaces to be a delimiter Numbers does not recognize that. Numbers will put everything into one column. The fix? In Pages, put a tab between name and address. Find/replace two spaces with Tab. Export, as Text.
    Based on what you see (with show invisible active) in Pages, you can use the Find/Replace function to create the specific delimiter you want (tab or comma). You can use that function to manipulate the file easily so the data you want shows up in separate columns. You may need to get clever to accomplish the unique delimiters. You might even need to do two passes with Find/Replace.
    In the instance above  if there was only one space between each element. (not two as a pseudo delimiter) You could replace all spaces with a tab in Pages. Export as Text.  Numbers will open that file with a column for each word (one for John, one for Smith). Then  "Merge" the two cells (columns) you want to put back together. 

  • Numbers issue importing csv with this field "00:00:00:00"

    Greetings,
    I'm trying to import a .csv file into Numbers. One of the fields is Timecode with the format 00:00:00:00
    Numbers tries to read this as a date and doesn't know how to deal with it. I've tried every cell type to no avail..
    Anyone have any ideas?
    thx

    I'm importing a .csv file from an audio recorder with the goal of generating a .pdf report. Inside the .csv file is a column that for every file has a smpte timecode field in the form of hr:min:sec:frames or 01:02:45:00
    When importing this into Numbers, the program can't convert this properly so it creates a useles date out of if. I need Numbers to just import this as Text or not attempt to convert it to some other field type. Here's what a row from the output of the recorder looks like
    25Y-04.WAV,25Y,04,00:01:35,04:44:12:00,"MIX",,"BOOM-416",,,,,,,,,,"",
    Numbers doesn't deal with 04:44:12:00

  • Import csv files into Ical

    Is there a way to import csv into Ical? I need the "importing csv into Ical" for dummies version. Thanks.

    There are no plans to add that functionality that I am aware of. I am usually not informed of updates until it comes out.
    There is a 3rd party program that allows you to sync with Palm desktop calendar.
    Check out this program called companionlink for google.
    http://www.companionlink.com/products/companionlinkforgoogle.html
    Post relates to: Palm i705

  • Where are my pictures stored on the hard drive when I import them into Aperture?

    I imported pictures into Aperature under the project name Christmas 2012. When I went into Finder to see where the pictures were actually placed on my hard disk, the folder didn't show up anywhere. These are new photos that I added to my hard drive.
    I then thought I would do a file search on some of the photos. One picture's file name was IMG_2260. When I searched All My Files for this file, it produced two different photos with the exact same file name IMG_2260!
    Now I'm really confused! Any help would be appreciated.

    . It just seems strange to me to not be able to find the actual photos with Finder.
    The actual photos do not exist as image files, until you export them. The only images that do exist are the originals that you import into Aperture. When you adjust images, enhance them, crop them, Aperture will only store the command, but not actually create the edited version.
    That has three advantages:
    Aperture saves space, because only the original image is stored.
    Aperture can easily undo any operation and you have a lossless workflow.
    Many adjustments can be accumulated into one operation and done very precisely, because the image need not to be rendered to 8Bit or 16 Bit versions in between. Only the final version needs to be encoded as image file.
    So, since the edited images do only exist in a state of limbo, you do not see them in the library as images.
    Regards
    Léonie
    Added:
    When I searched All My Files for this file, it produced two different photos with the exact same file name IMG_2260!
    When you search for the originals with Spotlight or file search from the Finder, you may find the originals and previews of edited versions, that Aperture creates to share with the Media Browser. In addition to exporting the images, you can access them using the Media Browser from all applications that are compatible with iLife: Mail, Pages, Keynote, iWeb, ...

Maybe you are looking for

  • Nokia lumia 520 screen zooms in too much

    I purchased Lumia 520 about a week ago but after two three days the problem started. The lock screen zooms in so much that it is impossible to attend any incoming call also it is impossible to see the incoming number's digits because they are so much

  • Best Wi-Fi Setup using new Zyxel PK 5001 Z modem from Century Link

    My wi-fi setup had consisted of a CenturyLink 660 modem and a white "original generation" Airport Extreme. I have a printer connected by ethernet and phones, apple TV, satellite TV, etc. connected to the Airport Extreme network. The modem died and Ce

  • Error while overlaying 2 PDF documents

    Hi, When i try to overlay two PDF documents using assembler service an error message comes up saying "PDFM_S13003: Cannot overlay pages from source PDF document "doc1.pdf" which contains XFA forms". How can i remove this XFA form content from the PDF

  • How are things going in the OS 9 world?

    Its been over a year since I last booted into OS 9. But for more than 6 years I was using a Performa 6360. It would often crash on websites and woudl give me so many problems that I have yet to have since I bought an ibook with Tiger. Yes there are a

  • CS5.5 Master Collection and Production Premium -- is the 32-bit license separate?

    The CS5.5 Master Collection and Production Premium include a license for 32-bit Premiere Pro and After Effects. As I understand it, this 32-bit license can be used on a separate computer (and another user) simultaneously with the 64-bit version. Is t