Problems with Excel xlsx files and Presentation Design 2011

Hello,
I just began using Presentation Design 2011 and have run into an issue and would really appreciate your help.
I have very large files in Excel 2007 format (.xlsx) that I need to import into Presentation Design.  When I try to do so, it automatically opens the .xlsx file as a 97-2003 Excel file, and in hte process, I then lose a large portion of the data (the file is very large, and the space limitations in 97-2003 are not sufficient for all the data I have, so I receive a message about compatability indicating that the data goes beyond the space limit).
I have tried looking online for a fix to this issue, and I cannot find it.  I just installed the service pack 2 patch 8 file, and this still does not work.
Will someone please let me know what I need to download or do to be able to import the xlsx files and maintain them in that format? 
Thank you!
Curtis

Hi Curtis,
In the older version of dashboard design 2011, xcelsius 2008, .xlsx(excel 2007) files are imported and converted automatically to excel 2003 format. So there are some compatiability issues with both versions and also size limitations. excel 2003 cannot have more than 256 columns. I doubt same is the case with new version.
Inside the designer data is in excel 2003 format. So you cannot have data more than the limit and some formats. You should only be pulling in enough data to fill your components in dashboard and remove any unnessary information from the spreadsheet . Since dashboards are meant for summary data, importing very large excels files are not recommended.
Hope it helps you.
Regards,
Nikhil Joy

Similar Messages

  • Problem with Date of files and email

    Hi,
    I have a MacBook with MacOSx snow Leopard 10.6.3.
    I have a problem with the date showed for the files inside Finder and for my emails on Apple Mail. All files show a date with correct day and correct hour but with wrong month; all files have as month January. Except for files modified or email received in the last two days all the other files displayed by Finder (and also for email) have this wrong date. But when I want to attach a file to an email or insert a file (for example word) inside another file word the system displays correct date.
    Someone had the same problem?
    The version of Apple Email is 4.2 and the Finder is 10.6.4.

    You make no mention that you have checked your calendar settings.
    System Preferences>Time & Date>Date & Time
    Was this done?
    I am not at my SL MBP at the moment but, the above should be the same and/or similar as the Tiger OS.
    "MacOSx snow Leopard 10.6.3."
    Update to OS 10.6.4, repair permissions and restart your computer.
    !http://i50.tinypic.com/izvwo1.gif!

  • TS1424 I have all my previous music files in wma formats from PC Windows xp computer. But now I had decided to purchase an iMac computer, and there is a lot of information I would like to bring to the Mac, but I'm having problems with my music file, and o

    I have all my previous music files in wma formats from my previous PC Windows xp computer. And only two weeks ago I decided to purchase an iMac computer OS X Maverick, and there are a lot of files and information I would like to bring to the Mac, but I'm having problems playing my music file, suited to the PC but not with iMac as yet. So, I hope you can help on this...
    Kind Regards
    Robert Klaassen

    WMA files are 'window media audio' files, which is a Microsoft format. If you want to add them to your iTunes library on your Mac then you will need to convert them into a compatible format first. If you still have your windows machine then iTunes for Windows can convert them from WMA to MP3 format : https://discussions.apple.com/message/24158701#24158701
    Or try a search for, for example, 'convert wma to mp3' to find programs to convert them.

  • Problems with writing to file, and with ActionListener.

    I have been trying to write a Payroll Division type program as my school Computer Science Project. However, I have a few problems with it...
    import java.io.IOException;
    import java.io.FileOutputStream;
    import java.io.FileInputStream;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.util.StringTokenizer;
    import javax.swing.*;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.event.*;
    public class Personnel implements ActionListener  {    
             JFrame GUIFrame;
             JLabel ID, Line, OKText,AnswerField;
             JTextField IDField, LineField;
             JButton OK;
             JPanel GUIPanel;
             int trialCounter=0;
             final static int employeeNumber = 7;
             final static int maxValue = ((employeeNumber*4)-1);
            //Number of employees, which would be in real life passed by the Payroll division.   
            public static String [][] sortHelp = new String [employeeNumber+1][3];    /** Creates a new instance of Personnel */       
            public Personnel() {
              GUIFrame = new JFrame("PersonnelSoft"); //create title header.
                     GUIFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                     GUIFrame.setSize(new Dimension(100, 140));
                     GUIPanel= new JPanel(new GridLayout(2, 2));
                     addWidgets();
                     GUIFrame.getRootPane().setDefaultButton(OK);
                     GUIFrame.getContentPane().add(GUIPanel, BorderLayout.CENTER);
                     GUIFrame.pack();
                    GUIFrame.getContentPane().setVisible(true);
                    GUIFrame.setVisible(true);
            private void addWidgets() {
                  ID = new JLabel ("Please enter your employee Identification Number:", SwingConstants.LEFT);
                  IDField = new JTextField ("ID", 5);
                  Line = new JLabel ("Please enter the line of your payroll with which you have concerns:", SwingConstants.LEFT);
                  LineField = new JTextField ("###", 2);
                  OKText = new JLabel ("Click OK when you have verified the validity of your request", SwingConstants.LEFT);
                  OK = new JButton ("OK");
                  OK.setVerticalTextPosition(AbstractButton.CENTER);
                  OK.setMnemonic(KeyEvent.VK_I);
                  AnswerField = new JLabel("The Result of your Querie will go here", SwingConstants.LEFT);
                  GUIPanel.add(ID);
                  GUIPanel.add(IDField);
                  GUIPanel.add(Line);
                  GUIPanel.add(LineField);
                  GUIPanel.add(OKText);
                  GUIPanel.add(OK);
                  GUIPanel.add(AnswerField);
                  OK.addActionListener(this);
                  ID.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                  OKText.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                  Line.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            public static void ArrayCreate() throws IOException {   
              //creates a employeeNumber x 3 array, which will hold all data neccessary for future sorting by employee ID number.      
              int counter = 2;      
              int empCounter = 1;      
              String save;
              //avoid having to waste memory calculating this value every time the for loop begins 
              FileInputStream inFile = new FileInputStream("C:\\Documents and Settings\\Abraham\\humanresource4\\src\\humanresource4\\HR.txt"); 
              BufferedReader in = new BufferedReader(new InputStreamReader(inFile));
              String line;
                    line = in.readLine();
                    StringTokenizer st = new StringTokenizer(line);
                    save = st.nextToken();
                    sortHelp[0][0] = save;
                    sortHelp[0][2] = save;
                    while (st.hasMoreTokens()) {
                    save = st.nextToken();   
                    sortHelp[0][1] = save;
                    while (counter <= maxValue) {
                    line = in.readLine();
                    if (((counter - 1) % 4) == 0) {
                    st = new StringTokenizer(line);
                    sortHelp[empCounter][0] = st.nextToken();
                    sortHelp[empCounter][2] = sortHelp[empCounter][0];
                    while (st.hasMoreTokens()) {
                    save = st.nextToken();   
                    sortHelp[empCounter][1] = save;
                    empCounter++;
                    counter++;
                 public static String[] joinString() {
                      String[] tempStorage = new String[employeeNumber+1];
                      int counter;
                      for (counter = 0; counter <= employeeNumber; counter++) {
                           tempStorage[counter] = (sortHelp[counter][1] + sortHelp[counter][0]);
                      return (tempStorage);
                 public static String[] sortEm(String[] array, int len)
                     java.util.Arrays.sort(array);
                     return array;
                 public static void splitString(String[] splitString){
                    int counter;
                    for (counter = 0; counter <= employeeNumber; counter++){
                         sortHelp[counter][0]=splitString[counter].substring( 5 );
                         sortHelp[counter][1]=splitString[counter].substring(0,5);
                 void setLabel(String newText) {
                     AnswerField.setText(newText);
                 void writetoHR(String local) throws IOException {
                      FileOutputStream outFile = new FileOutputStream ("C:\\Documents and Settings\\Abraham\\humanresource4\\src\\humanresource4\\HR2.txt");
                       BufferedWriter out = new BufferedWriter(new OutputStreamWriter(outFile));
                       out.write(local+"the preceding employee number is not in our database, but has submitted a request. Please sort out the issue");
                       System.exit(0);
                 public void actionPerformed(ActionEvent e){
                      boolean flag=false;
                      String local=IDField.getText();
                      int i=0;
                      while((i<=employeeNumber)&&(flag==false)){
                           if (sortHelp[1]==local) {
                   flag=true;
              i++;
         trialCounter++;
         if (trialCounter>=3)
              writetoHR(local);
         if (flag==false)
              setLabel("Your ID number does not exist in our records. Verify your ID and try again.");
         else {
              switch (LineField.getText())
              case 04:
                   setLabel("Your pay is calculated by multiplying your working hours by the amount per hour. If both of these fields are satisfactory to you, please contact humanresource");
                   break;
              case 03:
                   setLabel("Hourly amount was calculated by the system, by dividing your yearly pay 26 and then 80.");
                   break;
              case 07:
                   setLabel("Overtime pay was calculated by multiplying regular hourly pay by 1.1");
                   break;
              case 06:
                   setLabel("The overtime hourly pay was multiplied by the amount of overtime hours.");
                   break;
              case 10:
                   setLabel("For holiday hours, your pay is increased by 25%.");
                   break;
              case 09:
                   setLabel("The holiday hourly pay was multiplied by your amount of holiday hours.");
                   break;
              case 11:
                   setLabel("Your total pay was calculated by adding all the separate types of payment to your name.");
                   break;
              case 17:
                   setLabel("Your net pay was found by subtracting the amount withheld from your account");
                   break;
              case 19:
                   setLabel("Your sick hours remaining were taken from a pool of 96 hours.");
                   break;
              default:
                   setLabel("Please contact humanresource.");
              break;
    private static void CreateAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
    Personnel GUI = new Personnel();
         public static void main(String[] args) throws IOException {
              String[] temporary = new String[employeeNumber];
              ArrayCreate();
    temporary = joinString();
    temporary = sortEm(temporary, employeeNumber);
    splitString(temporary);
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    CreateAndShowGUI();
    int row;
    int column;
         for (row = 0; row < (employeeNumber); row++) {    // verify proper output by ArrayCreate splitString
    for (column = 0; column <= 2; column++) {
    System.out.print(sortHelp[row][column]);
    System.out.print(' ');
    System.out.print(' ');
    System.out.println();
    1) It does not permit me to switch on a String. How do I solve that?
    2)How would I throw an exception (IO) within actionperformed?
    3)Generally, if cut it down to everything except the writing to a file part, the actionperformed script causes an error... why?
    Thanks in advance.
    And sorry for the relative lameness of my question...
    ---abe---

    Thank you very much. That did solve almost all the problems that I had...
    I just have one more problem.
    First (here's the new code):
    import java.io.IOException;
    import java.io.FileOutputStream;
    import java.io.FileInputStream;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.util.StringTokenizer;
    import javax.swing.*;
    import java.util.*;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.event.*;
      public class Personnel implements ActionListener  {    
             JFrame GUIFrame;
              JLabel ID, Line, OKText,AnswerField;
               JTextField IDField, LineField;
               JButton OK;
               JPanel GUIPanel;
               int trialCounter=0;
         final static int employeeNumber = 7;
         final static int maxValue = ((employeeNumber*4)-1);
                public static String [][] sortHelp = new String [employeeNumber+1][3];   
         public Personnel() {
              GUIFrame = new JFrame("PersonnelSoft"); //create title header.
             GUIFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             GUIFrame.setSize(new Dimension(100, 140));
             GUIPanel= new JPanel(new GridLayout(2, 2));
             addWidgets();
             GUIFrame.getRootPane().setDefaultButton(OK);
             GUIFrame.getContentPane().add(GUIPanel, BorderLayout.CENTER);
             GUIFrame.pack();
            GUIFrame.getContentPane().setVisible(true);
            GUIFrame.setVisible(true);
            private void addWidgets() {
                  ID = new JLabel ("Please enter your employee Identification Number:", SwingConstants.LEFT);
                  IDField = new JTextField ("ID", 5);
                  Line = new JLabel ("Please enter the line of your payroll with which you have concerns:", SwingConstants.LEFT);
                  LineField = new JTextField ("###", 2);
                  OKText = new JLabel ("Click OK when you have verified the validity of your request", SwingConstants.LEFT);
                  OK = new JButton ("OK");
                  OK.setVerticalTextPosition(AbstractButton.CENTER);
                  OK.setMnemonic(KeyEvent.VK_I);
                  AnswerField = new JLabel("The Result of your Querie will go here", SwingConstants.LEFT);
                  GUIPanel.add(ID);
                  GUIPanel.add(IDField);
                  GUIPanel.add(Line);
                  GUIPanel.add(LineField);
                  GUIPanel.add(OKText);
                  GUIPanel.add(OK);
                  GUIPanel.add(AnswerField);
                  OK.addActionListener(this);
                  ID.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                  OKText.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                  Line.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            public static void ArrayCreate() throws IOException {   
              int counter = 2;      
              int empCounter = 1;      
              String save;
              FileInputStream inFile = new FileInputStream("C:\\Documents and Settings\\Abraham\\humanresource4\\src\\humanresource4\\HR.txt"); 
              BufferedReader in = new BufferedReader(new InputStreamReader(inFile));
              String line;
                    line = in.readLine();
                    StringTokenizer st = new StringTokenizer(line);
                    save = st.nextToken();
                    sortHelp[0][0] = save;
                    sortHelp[0][2] = save;
                    while (st.hasMoreTokens()) {
                    save = st.nextToken();   
                    sortHelp[0][1] = save;
                    while (counter <= maxValue) {
                    line = in.readLine();
                    if (((counter - 1) % 4) == 0) {
                    st = new StringTokenizer(line);
                    sortHelp[empCounter][0] = st.nextToken();
                    sortHelp[empCounter][2] = sortHelp[empCounter][0];
                    while (st.hasMoreTokens()) {
                    save = st.nextToken();   
                    sortHelp[empCounter][1] = save;
                    empCounter++;
                    counter++;
                 public static String[] joinString() {
                      String[] tempStorage = new String[employeeNumber+1];
                      int counter;
                      for (counter = 0; counter <= employeeNumber; counter++) {
                           tempStorage[counter] = (sortHelp[counter][1] + sortHelp[counter][0]);
                      return (tempStorage);
                 public static String[] sortEm(String[] array, int len)
                     java.util.Arrays.sort(array);
                     return array;
                 public static void splitString(String[] splitString){
                    int counter;
                    for (counter = 0; counter <= employeeNumber; counter++){
                         sortHelp[counter][0]=splitString[counter].substring( 5 );
                         sortHelp[counter][1]=splitString[counter].substring(0,5);
                 void setLabel(String newText) {
                     AnswerField.setText(newText);
                 void writetoHR(String local) throws IOException {
                      FileOutputStream outFile = new FileOutputStream ("C:\\Documents and Settings\\Abraham\\humanresource4\\src\\humanresource4\\HR2.txt");
                       BufferedWriter out = new BufferedWriter(new OutputStreamWriter(outFile));
                       out.write(local+"the preceding employee number is not in our database, but has submitted a request. Please sort out the issue");
                       System.exit(0);
                 public void actionPerformed(ActionEvent e){
                      boolean flag=false;
                      String local=IDField.getText();
                      local trim();
                      int i=0;
                      while((i<employeeNumber)&&(flag==false)){
                           if (sortHelp[1]==local) {
                   flag=true;
              else {
         i++;
         trialCounter++;
         if (trialCounter>=3)
              try {
                   writetoHR(local);
              } catch (IOException exception) {
    setLabel("We are sorry. The program has encountered an unexpected error and must now close");
              } finally {
         if (flag==false)
              setLabel("Your ID number does not exist in our records. Verify your ID and try again.");
         else {
              final Map m = new HashMap();
              m.put("04","Your pay is calculated by multiplying your working hours by the amount per hour. If both of these fields are satisfactory to you, please contact humanresource.");
              m.put("03", "Hourly amount was calculated by the system, by dividing your yearly pay 26 and then 80.");
              m.put("07", "Overtime pay was calculated by multiplying regular hourly pay by 1.1");
              m.put("06", "The overtime hourly pay was multiplied by the amount of overtime hours.");
              m.put("10", "For holiday hours, your pay is increased by 25%.");
              m.put("09", "The holiday hourly pay was multiplied by your amount of holiday hours.");
              m.put("11", "Your total pay was calculated by adding all the separate types of payment to your name.");
              m.put("17", "Your net pay was found by subtracting the amount withheld from your account.");
              m.put("19", "Your sick hours remaining were taken from a pool of 96 hours.");
    setLabel(m.get(LineField.getText()));
    private static void CreateAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
    Personnel GUI = new Personnel();
    public static void main(String[] args) throws IOException {
              String[] temporary = new String[employeeNumber];
              ArrayCreate();
    temporary = joinString();
    temporary = sortEm(temporary, employeeNumber);
    splitString(temporary);
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    CreateAndShowGUI();
    int row;
    int column;
         for (row = 0; row < (employeeNumber); row++) {    // verify proper output by ArrayCreate splitString
    for (column = 0; column <= 2; column++) {
    System.out.print(sortHelp[row][column]);
    System.out.print(' ');
    System.out.print(' ');
    System.out.println();
    Now that code above produces two errors. First of all.
    local trim();produces the error:
    Syntax error, insert "AssignmentOperator ArrayInitializer" to complete ArrayInitializerAssignementSecondly, if I take that into comments, the line
    setLabel(m.get(LineField.getText()));Produces the error:
    The method setLabel(String) in the type Personnel is not applicable for the arguments (Object)If anybody could help me solve these, I would be sincerely thankfull.
    Now, before anybody asks as to why I want to trim the String in the first place, it is due to the fact that I compare it to another String that is without whitespaces. Thus the field that DOES have whitespaces was preventing me from launching into the if loop:
    if (sortHelp[1]==local) {
                   flag=true;
    (within actionperformed) Or at least that's my explanation as to why the loop never launched. If it is wrong, can somebody please explain?)
    I apologize for the horrible indentation and lack of comments. This is an unfinished version.. I'll be adding the comments last (won't that be a joy), as well as looking for things to cut down on and make the program more efficient.
    Anyways,
    Thanks in Advance,
    ---abe---

  • Problems with importing .MP4 file and the audio in FCP 6

    Hi all,
    I am pretty new to Final Cut Pro and have just approached my first project.
    I have a Samsung VP-MX20
    http://www.samsung.com/uk/consumer/detail/spec.do?group=cameracamcorder&type=cam corder&subtype=flashcamcorder&model_cd=VP-MX20/XEU&fullspec=F
    *Codecs H.264, AAC.*
    I needed some space on the camera so halfway through a holiday i transfered all the video files from the camera to my Laptop.
    I have imported these files from the hardrive
    Vid rate - 25 fps
    compressor - H.264
    Pixel Aspect - PAL - CCIR 601
    What seems to be the problem is ok when i drag the clip from the viewer to the canvas and apply insert, i get the box that says 'Change Sequence settings to match the clip settings?
    i click yes and when the clip is layed out on the timeline there is a red line above the timeline, when i play the clip i only get bleeps as audio and not the original sound.
    If i drag the playhead i can hear the audio but if i try to play all i hear us bleeps plus if i import an mp3 the red line appears above the timeline and the same applies
    can anyone help me here.
    Thanks
    Elles

    Hi Zak,
    many thanks for your reply, i have contacted Apple and taking your advice and using compressor i have converted the codec H.264 to Apple Pro Res 422 for interlaced material.
    I have imported this file and when i drag once again from the viewer to canvas i get the standard box asking to change the sequence to match the clip.
    I am still getting the red line above the timeline and bleeping as audio.
    any idea?

  • Problem with MS Access Files and executable files migrateds

    Hi all.
    We are migrating an old Netware 6.0 server to new SLES 10 SP3 with OES 2 SP2a. I already migrated one volume and in this weekend well migrate the last, and most important, volume to new OES 2 server.
    The problem is about some MS Access databases that are very very used for all users and some executable applications that was writed using fisical path like \\OLDSERVER\VOL\PATH\APP.EXE or some links to libraries, databases, images, etc.
    The old NW 6.0 server will be removed from the tree in 2 or 3 weeks and in this time the two servers will co-exists. I want to know if it is possible redirect NCP requests to OLDSERVER to NEWSERVER without users rewrite all of MS Access and executable applications. Is it possible?
    Tks
    Alan Cota.

    AlanCota wrote:
    >
    > Hi all.
    >
    > We are migrating an old Netware 6.0 server to new SLES 10 SP3 with OES
    > 2 SP2a. I already migrated one volume and in this weekend we´ll migrate
    > the last, and most important, volume to new OES 2 server.
    >
    > The problem is about some MS Access databases that are very very used
    > for all users and some executable applications that was writed using
    > fisical path like \\OLDSERVER\VOL\PATH\APP.EXE or some links to
    > libraries, databases, images, etc.
    >
    > The old NW 6.0 server will be removed from the tree in 2 or 3 weeks and
    > in this time the two servers will co-exists. I want to know if it is
    > possible redirect NCP requests to OLDSERVER to NEWSERVER without users
    > rewrite all of MS Access and executable applications. Is it possible?
    >
    > Tks
    >
    > Alan Cota.
    >
    >
    Have you considered trying to use a dns alias to it. I have not tested with
    MS access specifically but many other apps it works perfectly for. This is
    how I get around those issues. Of course your issue is that you still
    havethe existing server in the tree. How much will there still be on the
    old server. You could rename the old nw server and than update its info in
    dns to resolve this.

  • Problems with viewing RAW files and cannot update to ACR 5.7

    Hi
    I purchased a canon 7D today, then went to take some pictures and came home to find my RAW files are not readable by Bridge or Photoshop. I have done some research and it seems that the solution would be to update. I did this. However, two of my five updates failed to install, one of which is ACR 5.7. I then looked into this and have found the best option is to manual install, but this is confusing me as the directories is says to use do not exist on my mac. I don't know what to do, can anyone help? I just want to be able to view my files in Bridge and edit in ACR and photoshop!!!!!
    Thanks.

    If you download the 5.7 camera raw update from the following link,
    the installation should be automated:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4682
    MTSTUNER

  • I exported a pdf file to xlsx file and everything is jibberish. How can I fix the problem?

    I exported a pdf file to xlsx file and everything is jibberish. How can I fix the problem?

    Could you share with us a bit more info about the file?
    Open the PDF in Adobe Reader and choose File > Properties.
    What does it say next to the following lines:
    PDF Producer
    Application

  • HT201210 i have problem with the firmeware file...and I do not know what is that

    i have problem with the firmeware file...and I do not know what is that

    Make sure you are updating your phone the correct way, by connecting to iTunes and clicking Check for Updates on the Summary tab of your iTunes sync settings.  Do not try to download the firmware file from the internet first.  Also be sure iTunes is up to date before updating.
    Delete the existing firmware (.ipsw) file and try again.  You will find it at one of the following locations:
    Mac OS X: ~/Library/Application Support/MobileSync/Backup
    Windows XP: %AppData%\Apple Computer\MobileSync\Backup
    Windows Vista: %AppData%\Roaming\Apple Computer\MobileSync\Backup
    Windows 7: %AppData%\Roaming\Apple Computer\MobileSync\Backup

  • HT3042 Please show us the video tutorial for this because i am having so much problem with my iphone5 bluetooth and can not send any file . So plz plz help me

    Please show us the video tutorial for this because i am having so much problem with my iphone5 bluetooth and can not send any file . So plz plz help me

    You have to use airdrop which is on iOS 7

  • Repeating problems (1) Many Missing Files; and (2) Downloading From iTunes

    I am having multiple issues with the iTunes store currently. I have spoken with an Apple Expert on August 14, 2010 (case number available if needed). Although he was very good at helping me to the best of his ability, he referred me to iTunes Store Customer Service, which I previously was in contact with.
    I have 2 types of repeating problems (1) Many Missing Files; and (2) Downloading From iTunes Store.
    _Problem One - (1) Downloading From iTunes Store_
    I have 1610 missing files from my iTunes folders. I created a list of missing items by following these steps:
    +If for any reason you find yourself with random missing tracks, (or are trying to recover from a dying hard drive like me), there is an easy way to isolate those missing tracks.+
    +1. Create a standard playlist called "Not Missing".+
    +2. Drag your entire library into that playlist. Missing tracks cannot+
    +be copied to a playlist.+
    +3. Create a smart playlist called where you select the following conditions in the options window for the new smart playlist:+
    +*dropdown menu* PLAYLIST+
    +*dropdown menu* IS NOT+
    +*dropdown menu* NOT MISSING.+
    +4. Rename the smart playlist "Missing"+
    +5. Right Click the "Missing" playlist+
    +6. Click the "Export..." option+
    +7. Select the Plain Text option and Desktop location+
    My missing playlistable items represent a better part of a decades worth of audiobook files, transfered files from my PC days, etc... i loved my - now missing - Doctor Who and Torchwood purchases from iTunes.
    I have already read the Trouble Shooting, checked Time Machine Backup, and been walked through replacing the preferences list. The missing file path from the "get info" options in iTunes points towards a non-existant file.
    _Problem Two (2) Downloading From iTunes Store_
    I have had problems downloading files from iTunes for months. I first noticed it with the TV Show "Avatar: The Last Airbender". Lately, when I download from the (non-music) part of the store, the majority of files are downloaded and then immediately not found. This has been prompting iTunes to repeat the download. Until I force quit itunes and *potentially cry*.
    There have been multiple iTunes store purchases of audio books recently. If I reported the missing file immediately, I can contact iTunes support to repost the file and that usually fixes the issue. But today, I went to go rewatch "Torchwood: Children of Earth" and noticed Problem One.
    _Hind Sight_
    If provided with a spreadsheet of my iTunes Store purchase history, I can write a vlookup( formula in excel to compare the list against my exported missing list so a shortlist of what is missing from just my iTunes Store purchase history can be created (hint: it's the majority of items from the list, others are years worth of files from my PC days). If we could do that, could iTunes make my missing purchases available?
    Then we can focus on purely, trying to figure out why they went missing in the first place - so we can prevent it again & possibly help others from running into the same.
    Plea
    I strongly suspect the two issues are related to a root cause ... in addition to my user error in file management of backups ... what is going on?

    iTunes Support (Eric) emailed me some instructions. I am posting, in hopes that this will help others.
    _Suggestions from iTunes Support_
    Troubleshooting 1. iTunes Store: Finding missing purchases and downloads http://support.apple.com/kb/TS1408
    Troubleshooting 2. Direct Assistance
    _Results based on Suggestions_
    Results on "Searching the harddrive" - did not resolve my concerns
    Results from "Direct Assistant" - i emailed the list of the missing files... status is pending
    Conclusion
    I'll follow up again later, if I have new news.

  • How do I access files that have been recovered (after a Mavericks problem) with the .cca file extension

    How do I access files that have been recovered (after a Mavericks problem) with the .cca file extension

    First, to access documents you must use an app designed for that specific Document type. So Pages will not be able to open PDFs. The Documents app by Readdle can handle PDFs though. In the latter case, you'd open the app, click the menu icon at its top left, and click Open to go to your iCloud Drive. With Pages, if you had files outside the main Pages folder, click + then iCloud and navigate to the file's location.
    Matt

  • Opening Excel .xlsx files emailed from Windows computer

    I have been unable to open an Excel .xlsx file sent as an attachment from an Windows computer. I did download the free version of WinZip Mac, and although I can open it, it is a read-only file. I want to be able to make changes and send it back as I am able to with .xls files. Stuffit doesn't work either. Apple support doesn't understand why I am unable to access it properly.

    Considering you are the sender and receiver the solution should be easy. When you are getting ready to save the file on your MS Windows machine instead of saving do a "Save As" and you will see and option to save as .xls format. Once you do that your MS Windows 2004 version on your Mac will be able to read the file. However I think you're wise considering upgrading to Office 2011 on the Mac, that will be much simpler in the long term and you will have a version much more like your Windows version.
    While I never used Excel 2004 on my Mac's I did use Excel 2008 which I disliked. However I have since upgraded to Office 2011 and so far found that to be a really nice product.
    Best of luck,
    Roger

  • Presentation Designer 2011 SP4 Setup Not Recognizing 32-Bit Microsoft Excel 2013

    I have 32-bit Microsoft Office Excel (with 2013 office suite) installed.  When I try to install the SAP Crystal Presentation Design 2011 software, the setup prerequisite check is stating that I am missing Microsoft Office Excel (XP or higher) 32-bit.
    How do I install Crystal Reports Presentation Designer without having to use Microsoft Excel 2003?
    Does anyone know when (estimated guess) Crystal Reports Presentation Designer is scheduled to fully support 2013?

    Hi,
    You have to use SAP Crystal Dashboard Design 2013 which does support MS Office 2013, but I've read that it is not great, so I would not recommend it and to use MS Office 2010 if you can.
    Regards,
    Josh

  • Tempo problems with imported wav files

    Hey everyone, sorry if there's a quick fix for this in the forums that I couldn't find, but I've been having some tempo problems with imported .wav files.
    Long story short, my system couldn't handle playing all the tracks for a song while recording drums, so I bounced out an mp3 of the song and put it in a new Logic file so my drummer could just play along to that as I recorded him. Unfortunately, the original song is at 167 bpm, but I forgot to change the bpm in the new Logic file with the .mp3 file of the song to 167 bpm, so it was left at the default 120 bpm.
    So, the drums were recorded at the correct 167 bpm, but Logic thinks that those new drum .wav files should be played at 120 bpm, so when I import my drum tracks back into the original file, they do not play correctly at all.
    I could get record it all again, but I wanted to check if there was a way I could salvage what I already have, since my drummer lives about an hour away right now and can't just come over whenever he wants.
    Thanks for the help! I really appreciate it.

    Hi,
    First, do not use MP3 in Logic, the sound quality is less than AIFF, WAV or CAF, and Logic has to decode it for playback, making it a heavier burden on the CPU than an uncoded audiofile, such as AIFF, WAV or CAF.
    Secondly, audio files are independent of Logic's tempo. If you bounce down an audio file in any format (other than Apple Loop), it will play back at the same speed, +regardless of Logics' tempo setting+, either at recording or playback. Logic doesn't 'think' anything. The BPM is only important to MIDI tracks, or to the spacing between audio files. The audio files themselves *are not affected* by the tempo setting. If you import an audio file of tempo 167 into a 120 BPM project, the file will still play at 167, only Logic will indicate the wrong bar positions.
    regards, Erik.

Maybe you are looking for

  • Cannot connect to Planning from SmartView

    Hi to all! :) I tried it both in Excel 2007 and 2003 and I am using Hyperion Planning 11.1.1.3. When in Excel, I went to Hyperion>Options and put http://servername:8300/HyperionPlanning/SmartView as Hyperion Provider Service URL. Next, when I go to D

  • How do I get rid of blue boxes surrounding links?

    Viewing .pdf files in Reader on my Android tablet, all my links are shown in a light blue field.  This looks terrible and does not happen when I view them in other .pdf readers. How can I get rid of these??? Thanks!

  • Unable to start OES Admins Server (i.e asiAdminServer)

    Hi All, My goal is to install OES 10.1.4.3 . Below is my environment: - RHEL 5.5 64 bit. - SQL Server 2005. - Weblogic 10.3.3 (wls1033_generic.jar) -Java version is 64 bit JDK as shown below: *"1.6.0_21" Java(TM) SE Runtime Environment (build 1.6.0_2

  • How to change Agendus Pro language to German?

    Hello everybody, I recently purchased Agendus Pro online as a promotion - the only language version available was English. I would like to change it to German - ist there any way to do that short of discarding it and spending more $$$s? Please note I

  • ITunes not recognizing my iPhone after I updated my OS to Leopard

    I have been successfully syncing my iPhone 3G for many months now. But this week I updated my OS to 10.5.6 and ran all the additional updates. Now when I plug in my iPhone, iTunes doesn't see it. I have iTunes 8 installed. I have shut down and restar