Import Excel with Import Wizard / Problem during the import of "Actual Work" column

Hello,
I am trying to import an Excel File (*.xlsx) to Project Server 2013 through Project Professional 2013 and Import Wizard.
I am having trouble when I try to include the column "Actual Work". After selecting the columnsmapping I am getting a strange error message saying that "The File cannot be oppened","Make sure, that the Filename and Path is right"
and some other strange messages concerning compatibility, although I am using the same File, which works perfectly without the "Actual Work" column.
I have tried as well with csv and the outcome was the same.
Any help is welcome!
Thank you in advance,
Ioannis

Which DW are you using - DMX on Mac? It didn't have that
option. This is
not an Educational version issue - it's a Mac issue.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Terry_Straehley" <[email protected]> wrote
in message
news:fm85u9$5ec$[email protected]..
> From a 11/06 post
> <<Hi, My Dreamweaver MX Education Version does NOT
have the Import to
> Excel
> option. I am using "Excel 2003 (11.6560.6568) SP2, Part
of Microsoft
> Office
> Professional Edition 2003". If I start with a blank page
in Dreamweaver,
> click
> on File, Import, I only have the options "XML into
Template", "Word HTML,
> and
> "Tabular Data". Does anyone know why I don't have the
"Import Excel" >>
>
> This was not answered in the thread I copied it from. I
have the same
> problem.
> Can some one answer the question?
>

Similar Messages

  • I am using Windows 7 Home Premium 64-bit OS.  I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installa

    I am using Windows 7 Home Premium 64-bit OS.I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installation process it gave me an error message that said: 
    Runtime error! 
    Program C:\Program Files\iTunes.exe
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I quit the installation, uninstalled iTunes and rebooted my computer.  I now receive a similar message with a slight difference:
    Runtime error! 
    Program C:\Program Files (x86)...
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I did not leave anything out from the error message.  It doesn't point to a specific file, it just ends with "(x86)..."  Every time I boot up my computer, this error message pops up on my desktop.
    How do I repair this issue?  I have found multiple suggested solutions but am unsure which one is the best, and I don't want to try a bunch of different things for fear I may make the problem worse.  I would like to try and fix this myself if possible but I need to know if that is really possible or if I need to take my computer to someone for repairs.  Any suggestions will be greatly appreciated!!

    Hi lustyln,
    I'm having a little trouble understanding all of what you are trying to explain. From what I can tell, it sounds like your PC has a lot of software problems and you want to know what is supposed to be there and what isn't.
    For reference, here are your product specifications:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01893242&lc=en&product=4043282
    To get your PC software back to how it was when it was first purchased, run a system recovery:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01867418&lc=en&product=4043282
    I hope this helps.
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

  • RDC for MAC cannot connect to TS server with error message "You were disconnected from the Windows-based computer because of problems during the licensing protocol".

    the mac clients are running RDC for mac version 2.1 and they cannot connect to Windows 2008 R2 TS server. They get the error "You were disconnected from the Windows-based computer because of problems during the licensing protocol".
    really appreciated if someone have a fix for this.
    thanks,
    /dan

    Hey,
    Any proposed answer for this ?
    I face the same problem and my environment 
    and I've got same results as dle2k
    1. TS lic mode is set to per user confirmed it works for windows clients.
    2. the TS server's system log logged error "The Terminal Server security layer detected an error in the protocol stream and has disconnected the client".
    3. the reports shows per user cal has been issued to users. no temp per device cal has been issued.
    4. yes, CoRD works .
    5. we tried version 2.1.1 of the Mac RD Client but it also does not work.

  • Problem during the changing of  Password in Active Directory

    Hello All !
    I am facing a problem during the password modification
    in active directory, i got the same exception as other are getting i.e
    javax.naming.OperationNotSupportedException: [LDAP: error code  53 - 00002077: SvcErr: DSID-03190959, problem 5003 (WILL_NOT_PERFORM), data 0
                       Can any body help me how i will come to know that 128 bit
      Encryption is done successfully. Although i Installed the  MS High Encryption  Pack but it's registry is not done in Conrol Panel.
    is this a problem(as i think) ?
        I am giving the code please check it out->
                          import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    //import java.io.*;
    //import javax.net.ssl.*;
    //import java.security.*;
    import java.io.UnsupportedEncodingException;
    public class setpassword
         public static void main (String[] args)
              Hashtable env = new Hashtable();
              String adminPassword = "";
              String userName = "ou=MCA,ou=Trainee,dc=ControlsNet,dc=local";
              String newPassword = "yadav";
              String keystore = "D:\\j2sdk1.4.2_12\\jre\\lib\\security\\cacerts";
              System.setProperty("javax.net.ssl.trustStore",keystore);
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,"[email protected]");
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              env.put(Context.SECURITY_PROTOCOL,"ssl");
              String ldapURL = "ldap://gateway.ControlsNet.local:636/";
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   LdapContext ctx = new InitialLdapContext(env,null);
              ModificationItem[] mods = new ModificationItem[1];
                   String newQuotedPassword = "\"" + newPassword + "\"";
                   byte[] newUnicodePassword = newQuotedPassword.getBytes("UTF-16LE");
                   mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE, new BasicAttribute("unicodePwd", newUnicodePassword));
                   ctx.modifyAttributes(userName, mods);
              System.out.println("Reset Password for: " + userName);     
                   ctx.close();
              catch (NamingException e) {
                   System.out.println("Problem resetting password: " + e);
              catch (UnsupportedEncodingException e) {
                   System.out.println("Problem encoding password: " + e);
    Please reply me immideiately as soon as you see this problem.
    I think some of u already solved this problem. thanks in advance.

    Believe it or not, looks similar to the problem in the post http://forum.java.sun.com/thread.jspa?threadID=580113&tstart=0
    More unbelievable is the huge security hole in your network !String adminPassword = "";
    env.put(Context.SECURITY_PRINCIPAL,"[email protected]");
    env.put(Context.SECURITY_CREDENTIALS,adminPassword);An administrator with a blank password !
    The ldap standard (rfc 2251) defines an anonymous user as a user with a null passsword. By default, Active Directory does not allow anonymous users to perform searches against the directory, let alone reset a user's password.

  • Can't launch the organizer in Elements 13. "A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available."  This happed with Elements 11, too.

    Can't launch the organizer in Elements 13. "A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available."  This happed with Elements 11, too.

    juliana
    Do you have any version of Premiere Elements 13 or only Photoshop Elements 13 which comes with Elements Organizer 13?
    Let us look at the following for Elements Organizer 13....
    1. Deletion of disabling the Elements Organizer 13 setting file which is named psa.prf. In Windows 7, 8, o 8.1 64 bit, it is found in the
    path
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Elements Organizer
    13.0
    Organizer
    and in the Organizer Folder is the psa.prf file that you delete or disable by renaming it from psa.prf to psa.prfOLD.
    2. If the above gains you successful entry into the Elements Organizer 13, then you can
    a. create a new catalog
    and/or
    b. repair or optimize the current one
    See Elements Organizer 13/File Menu/Manage Catalogs/Catalog Manager.
    3. There are times that certain formats will bring the Elements Organizer down when you try to import those formats into
    it.  But, from what you wrote, your current problems do not sound media related.
    3. At your earliest opportunity, please update Elements Organizer 13 to 13.1 using its Help Menu/Updates.
    Please review and consider and then let us know the outcome.
    Thank you.
    ATR

  • I have a presentation with  100 slides. During the first 10 slides I want one song to start playing from slide

    I have a presentation with +100 slides. During the first 10 slides I want one song to start from the beginning, at the 11th slide a new song starts from the beginning, and so on during the entire presentation. How do I do? Thanks in advance. janfromfinland

    This is a very common request which unfortunately has not been satisfactorily answered albeit for very complicated workarounds using multiple duplicates of your keynote file and hyperlinking them.
    The easiest alternative is to have iTunes play in the background timed to begin when you manually start the keynote. You can create a playlist so the tracks run into each other, or better yet combine them into one track using a free editor like GarageBand. You'll need to rehearse your timings. Hopefully, youre not trying to match lyrics with words or animations as this is not the most exact way to do so.
    The alternative is to create a separate keynote file of those 10 slides and export them to QuickTime, reimport the movie into keynote and add the music track to the file. That will give more accurate timing. The  most accurate timing would be tom import the QuickTime movie into iMovie and add the soundtrack with exact timings. Ive done this successfully except for the fact that exporting this way fools around with any build timings.
    S the final alternative is to do your first 10 slides with music from iTunes and advance the slides manually using screenflow or the latest QuickTime in lion to record the screen Inc music.
    All troublesome but doable workarounds until Apple comes to our aid.
    Les Posen
    Presentation Magic

  • Hyper-V 2012 R2. RemoteFx. "The remote session was disconnected because there were network problems during the licensing protocol. Please try connecting to the remote computer again."

    After a Installation from Windows 8.1/windows 7 everything works fine. For example  Install updates and Software. If I connect the first time a remotefx card i can use RDP as well. But if i restart the host I get the mentioned error. What can I do. These
    Hosts are not in a domain configuration. I tried it too but there was  no difference. I didn't discovered any errors in the eventlog, too. Only an actviex error. But same errors occurs with a succsefull rdp session.
    Also strange is if i start the vm without a remotefx card it works fine again. Only session with a Remotefx card aren't possible anymore.
    Is there a bug or something. I tried it many times with the same error.
    Maybe someone can help me. 
    kind regards  
    Tobi

    Hi Tobi,
    Thank you for posting in Windows Server Forum.
    For a workaround, please try to perform the two steps.
    1. Do NOT enable RDP 8 on the Windows 7 SP1 VM.  You should install RDP 8 and update the ICs though.
    2. Change the connection setting on the client from "Automatically detect" to "LAN"
    Please check again below thread for information.
    a. "The remote session was disconnected
    because there were network problems during the licensing protocol" after enabling RemoteFX Windows 8 VM
    (Please recheck answer by “dgeddes”)
    b. "The remote session
    was disconnected because there were network problems during the licensing protocol" After Installing RemoteFX
    Hope it helps!
    Thanks,
    Dharmesh

  • Problem during the simulation of IP Xilinx EM-DI-40GEMAC-PROJ

    Hello,
    I'm currently working with the IP Xilinx EM-DI-40GEMAC-PROJ and during a simulation i got a two errors when sending 20000 frames.
    The test consist in creating a loopback with two instance of Xilinx EM-DI-40GEMAC-PROJ. I write data on the LBUS interface on the first IP, the data go to the second IP, then go into a FIFO, then the data from the fifo enter the second IP and i read the data on the output port of the LBUS interface in the first IP.
    so the data path is the following :
    input LBUS IP 1 =>  output serdes IP 1 => input serdes IP 2 => output LBUS IP 2 => input FIFO =>
    => output FIFO => input LBUS IP 2 => output serdes IP 2 => input serdes IP 1 => output LBUS IP 1
    the data sends where the same for the 20000 frames, six words of 256 bits and a seven one with only 32 bits.
    i check that the data where send as they should be, in compliance with the LBUS protocol.
    A new frame was send 100ns after the previous one was send.
    when i check for the two errors, i see no problem during the first phase of the test (before the fifo) but during the other, in found two frame with bad FCS status
    could you please help me resolve this issue
    kind regards
    Raphaël Lemaire

     You can ignore them safely if there are no critcal warnings

  • I have Microsoft Office X on my Imac with OS 10.6, I cannot get the Ctriilic font in office to work in word or excell. Where do I get the cyrillic font to work in word/excel

    I have Microsoft Office X on my Imac with OS 10.6, I cannot get the Ctriilic font in office to work in word or excell. Where do I get the cyrillic font to work in word/excel

    "Could you explain where you think you have to pay something?"
    I signed up for the site and posted a question their response was that they had an answer and they required credit card imformation.
    "If your problem is to read existing Excel files, then I am very surprised that OpenOffice would not open them.  If you could send me one or provide a url I could see what the problem is (tom at bluesky dot org)."
    I can down load the files just fine and they open. the numbers in the documents will display but text will not what I get is this : "__________" where there should be text.
    Try this site and download the the Doc (rar). it will open on my computer as an excel file but there will be no text just "__________" Open office will not open this file, but excel will.
    http://militera.lib.ru/h/sovaviation/index.html

  • Problem with iTunes. I have Windows 8 on a new laptop. Installed latest version of iTunes. Can play music in My Library but when I click on Itunes Store I get the message "iTunes has stopped working. A problem caused the program to stop working correctly.

    I have a new laptop with Windows 8 as operating system. Installed latest version of iTunes ontop computer. I can play music in My Library but when I click on iTunes, I get the message " iTunes has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify if a solution is available."
    Anyone know what is the cause and if there is a resolution? Have tried to re-installing iTunes and have also tried restoring laptop to an earlier date.

    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/ht4627
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • When i load i tunes, it comes up with error message stating "i tunes has stopped working.A problem caused the program to stop working correctly. Windows will clode the program and notify you if a solution is available". I have no idea to fix

    New laptop, load itunes to find a error message that states, "i tunes has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available". It has me stuffed on such a problem that should be easy to load. Please help!!!!

    Hey there Rodney274,
    It sounds like you are getting an error from iTunes when you launch it. I would try the troubleshooting in this article named:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Start with troubleshooting for 3rd party plug ins section, then the rest of the article if needed:
    Start iTunes in Safe Mode
    Open iTunes in Safe Mode to isolate any interference from plug-ins or scripts not manufactured by Apple.
    Hold down Shift–Control while opening iTunes. You should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    Click Continue.
    See if the issue you're experiencing persists in Safe Mode.
    If you have the same issue while iTunes is in Safe Mode, proceed to the "Create a new user account" section. If you don't experience the same issue, follow these steps to remove third-party plug-ins.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Good evening at all. I've a iphone4 with a big problem abitanti the botton of home. Of i presa the botton in any case, the screen si blocked . Do tuo grave the sale problem in other case? Best regatds

    Good evening at all. I 've one iphone4  with a big problem at the botton of home. Of i prese the b

    Please post in your native language. This makes absolutely no sense at all in English.

  • I had problems during the download.

    I purchased Adobe Photoshop Elements 12...I had problems during the download...is it possible to get a hard copy on disc?

    Try downloading the trial instead. It's the same file, just without the added hassles from the application manager.

  • I cannot open my firefox broswer. The message box appeared that said a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available. Under that there are debug and close program buttons.

    I cannot open my firefox broswer. The message box appeared that said a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available. Under that there are debug and close program buttons.

    JackieMars71 I would recommend reviewing your installation log files to determine if there are any errors during the installation process.  You can find information on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

  • Can't activate imessage on my daughters ipod touch 5th gen.  Comes back with "An error occured during activation".  It was working until I updated to latest IOS version 7.1.2.  Can anyone help.

    Can't activate imessage on my daughters ipod touch 5th gen.  Comes back with "An error occured during activation".  It was working until I updated to latest IOS version 7.1.2.  Managed to update Facetime ok but can't do anything with iMessage.  Can anyone help?

    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                              

Maybe you are looking for

  • Problem Printing document properties from Word to PDF

    Hello all, This is wierd, I need to print from MS Word doc 2002 SP2 to PDF version 9.3.4.  When I do so, I need to pass the document properties from the word file to the PDF such as author, subject, title, etc.  What is strainge is when i click the p

  • Problem with objective-c troubleShooting

    Hi there, i'm all new to mac & iOS developement and am getting startet by working throught what appeared to be a great book "Einstieg in Objective-C 2.0 and Cocoa inkl iPhone programming". what im doing right now is creating an Weblog App for the iPh

  • XY Graph: cycle numbering for x-axis

    how to create a XY graph, where x-axis would have a cycle numbering e.g. ..0...180...0...180...0.. etc. thanx

  • Indesign to PDF issues

    HI, I have created a 310 page book using Indesign CS5. Now that the book is complete, I need to export it to PDF for printing. I have been working on this for about a week and I have tried to export the book at least 20 times, and only once did it wo

  • IDS in a Virtualized Environment

    Can anyone elaborate on an IDS solution for a virtualized environment? I  have blade servers running ESX/ESXi - heavily virtualized environment.  Im using blade switches as chassis I/O - no pass throughs. The  requirement is to run an IDS service suc