Ms excel how to transfer customised toolbars

I customise intensively lots of shortcuts, rules, scripts etc on my computer. Starting on a new computer is complicated then, because transfer to new computers and versions is not always easy or even possible.
In older ms excel (office) versions, the customised toolbars were in some file in the preference/startup folder. Now I can still modify toolbars etc in my recent version, but do not find the file it contains. That means that I have to rewrite all the macro's, buttons, shortcuts etc on all the computers I work on. This cannot be meant to be. I must have missed something. Any one know where that file is ?

peterbru
I cannot speak to this, as porting is not my bailiwick, but by mentioning  dianeoforegon  , she may visit your discussion. She is a former Microsoft MVP experience in this area I believe.
Others may be of help as well.
CCC
-- Tilting at windmills hurts you more than the windmills.

Similar Messages

  • How to transfer a set of data from Excel spread sheet to an Access database

    hi,
    Can any one please tell me how to transfer a set of data from Excel spread sheet to an Access database using SQL query.I'm using java API currently. I have done all sorts of ODBC connection in administrative tools.The file is in correct location. I have done certain coding but with errors.Help me to get rid of these errors,
    Coding:*
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection datacon=DriverManager.getConnection("jdbc:odbc:exdata","",""); *//For Excel driver*
    Connection datacon1=DriverManager.getConnection("jdbc:odbc:stock1","",""); *// For mdb driver*
    Statement datast=datacon.createStatement();
    Statement datast1=datacon1.createStatement();
    ResultSet excelrs=datast.executeQuery("select item_code,sdata,closing_stock from phy "); *//phy is the excel file*
    while(excelrs.next())
    String ic=excelrs.getString("item_code");
    System.out.println(ic);
    String d=excelrs.getString("sdate");
    double cs=excelrs.getDouble("closing_stock");
    int dbrs=datast1.executeUpdate("insert into second values('"+ic+"','"+d+"',"+cs+")"); *//second is the mdb*
    excelrs.close();
    }catch(Exception e)
    System.out.println(e);
    Error:*
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] The Microsoft Jet database engine could not find the object 'C:\JavaGreen\phy.xls'. Make sure the object exists and that you spell its name and the path name correctly.
    thanks,
    kumar.

    JAVA_GREEN wrote:
    No i haven't mixed up.But the file from where i have to retrieve the data is in csv format.Even though i created another csv driver.and tried but i cud not find a solution to load/transfer a set of records from one file(in Excel/csv format) to another file(in mdb format).plz help me.Is there any other methods for this data transfer.A csv file is NOT an excel file.
    The fact that Excel can import a csv file doesn't make it an excel file.
    If you have a csv file then you must use a csv driver or just use other code (not jdbc) to access it. There is, normally, a ODBC (nothing to do with java) text driver that can do that.

  • How to transfer a data to an excel file

    I would like to know on how to transfer the result from Java to excel file. Is there any exact codes?

    PS90 wrote:
    If it is possible, may I know the codes on how to do it?Let me tell you this reply was not unexpected.
    No.
    Nobody is going to give you "the codes". You need to do your own work. Whether it's for work, school, fun it does not matter. You need to do it yourself.
    So use POI (as linked to earlier in this thread) or use Google and find JExcel and get busy.

  • How to transfer excell info to iweb page?

    how to transfer excell info to iweb page?

    hello again.
    i pasted the html link in the iframe, in iewb it shows up, but not in the website
    http://www.tuning.ru/Blokpedaligaza!.html
    what can be wrong?
    P.S. i have only html page uploaded to server the was no any folder for html document..
    Message was edited by: platinummf

  • How to transfer number to Excel column letter

    I want to write a table into Excel file with fomula "=AVERAGE(G18:G64)", how to transfer table column nunber into excel column letter?
    for example, from table column 7, how to know 7 means G in excel?
    thanks!

    Please use report generation toolkit.
    Here is the snippet from RGT.

  • How to transfer excel files(on ftp server) into internal table?

    hello,everyone
    pls tell me how to transfer excel files those on a ftp server into internal table?
    ps.i know the function 'ftp_server_to_r3',it can help to transfer flat file.

    Hi,
    I believe you want to get the data from the FTP Server to R3.
    I am also sending the code. Have a look and it would help you.
    First get the Password and user name and the FTP Server Path where file is stored and FTP Server Host name
    FUNCTION zfi_ftp_get.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(I_FILENAME) TYPE  C
    *"  TABLES
    *"      T_BLOB STRUCTURE  ZFI_TLM_LENGTH OPTIONAL " is a table type with a field called line of length 992
    *"      RETURN STRUCTURE  BAPIRET2 OPTIONAL
      DATA : i_password(30)     TYPE c,
             i_user(30)         TYPE c,
             i_host(30)         TYPE c,
             i_rfc_destination  TYPE rfcdes-rfcdest,
             i_length           TYPE i,
             i_folder_path(100) TYPE c.
      DATA:   lv_blob_length   TYPE i.
      DATA:   lv_length        TYPE i,  "Password length
              lv_key           TYPE i VALUE 26101957,
              lv_password(30)  TYPE c,
              lv_ftp_handle    TYPE i,
              lv_cmd(80)       TYPE c.
      DATA: BEGIN OF result OCCURS 0,
            line(100) TYPE c,
            END OF result.
      TYPES: BEGIN OF ty_dummy,
             line(392) TYPE c,
           END   OF ty_dummy.
      DATA: lt_dummy TYPE TABLE OF ty_dummy,
            ls_dummy LIKE LINE  OF lt_dummy.
      i_password        = 'vnhdh'.
      i_user            = 'sdkgd'.
      i_host            = 'sbnksbg'.
      i_rfc_destination = 'SAPFTP'.
      i_length          = '992'.
      i_folder_path     = '/hioj/hohjk/hh'.
      lv_length = STRLEN( i_password ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = i_password
          sourcelen   = lv_length
          key         = lv_key
        IMPORTING
          destination = lv_password.
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = i_user
          password        = lv_password
          host            = i_host
          rfc_destination = i_rfc_destination
        IMPORTING
          handle          = lv_ftp_handle
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
      IF sy-subrc = 1.
        return-type = 'E' .
        return-message = 'FTP Connection not Successful'.
        APPEND return.
      ELSEIF sy-subrc = 2.
        return-type = 'E' .
        return-message = 'FTP Connection not Successful'.
        APPEND return.
      ELSEIF sy-subrc EQ 0.
        return-type = 'S' .
        return-message = 'FTP Connection Successful'.
        APPEND return.
        CONCATENATE 'cd' i_folder_path INTO lv_cmd SEPARATED BY space.
        CALL FUNCTION 'FTP_COMMAND'
          EXPORTING
            handle        = lv_ftp_handle
            command       = lv_cmd
          TABLES
            data          = result
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        IF sy-subrc = 1.
          return-type = 'E' .
          return-message = 'Command Error Occured during open of FTP Folder'.
          APPEND return.
        ELSEIF sy-subrc = 2.
          return-type = 'E' .
          return-message = 'TCIP Error Occured during open of FTP Folder'.
          APPEND return.
        ELSE.
          REFRESH t_blob.
          lv_blob_length = 992.
          TRANSLATE i_filename TO LOWER CASE.
          CALL FUNCTION 'FTP_SERVER_TO_R3'
            EXPORTING
              handle      = lv_ftp_handle
              fname       = i_filename         
            IMPORTING
              blob_length = lv_blob_length
            TABLES
              blob        = lt_dummy.
          t_blob[] = lt_dummy[].
        ENDIF.
      ENDIF.
    ENDFUNCTION.
    Regards
    Sajid
    Edited by: shaik sajid on Nov 16, 2010 7:25 AM

  • How can I save my customised toolbar so it is there every time I open a new browser window

    I have created a customised toolbar with all the icons I want but have to do it again every time I open a new browser window.

    i found i had almost exactly the same problem as you. one evening my itunes just wouldn't start up, it told me that 'itunes is unable to open because some of it's required files are missing, please re-install itunes'. now, i personally know a lot on the subject of computers and how they opperate, i had the built the computer that i encoutered the problem on myself. as soon as i came across the problem, i immediatly thought that i would be able to simply uninstall itunes and quicktime, and then re-install.
    after doing this, nothing changed, i went straight to 'add or remove programs' in windows, and tried to remove itunes from there. it wouldn't uninstall. i racked my brains over the problem, until i found this article, which provided a great deal of help. for anyone who later has this problem, go and download this freeware from microsoft: http://support.microsoft.com/default.aspx?scid=kb;en-us;290301 this program will immediatly remove any unwanted programs with ease, whether they are running or not. after using this program to uninstall itunes, re-install, and your problem should be solved.
    thanks. Alex Dove
    Custom built pc   Windows XP  
    Custom built pc   Windows XP  

  • I have lost my Safari url bar ,tried view/customise toolbar but when box opens there is no address bar to drag back can anyone help please

    I noticed a couple of days ago that my url bar on my imac was no longer there,I am new to the apple community and I am not sure how to progress with my qustion. I have tried selecting :- view / customise toolbar but the dropdown box which has various options to drag and drop does not show the address bar I am stuck can you help

    Thanks.... I too had this problem and didn't have a clue why it disappeared at times and how it reappeared as well.  Got another bird with the same stone
         Re: I have lost my Safari url bar ,tried view/customise toolbar but when box opens there is no address bar to drag back can anyone      help please 
         Aug 15, 2012 10:09 PM (in response to jame5allen)
         Go to: Safari>View Menu>Select 'Show Toolbar'.
    BCV

  • How to transfer BLOB type of data from SQL Server to Oracle

    Hi,
    Actually, I create a table with BLOB type data in SQL server. In fact, there is not exact BLOB type in SQL server, it will be separated to image and ntext types. But there is exact BLOB type in Oracle.
    I don't know how to transfer this "BLOB" type into Oracle with DTS or any other methods.
    Many Thanks for your any suggestions,
    Cathy

    JAVA_GREEN wrote:
    No i haven't mixed up.But the file from where i have to retrieve the data is in csv format.Even though i created another csv driver.and tried but i cud not find a solution to load/transfer a set of records from one file(in Excel/csv format) to another file(in mdb format).plz help me.Is there any other methods for this data transfer.A csv file is NOT an excel file.
    The fact that Excel can import a csv file doesn't make it an excel file.
    If you have a csv file then you must use a csv driver or just use other code (not jdbc) to access it. There is, normally, a ODBC (nothing to do with java) text driver that can do that.

  • How to transfer R/3 transaction screen values to crm web client Identificat

    Hi
      how to transfer Notification (iw52)  screen values BP, contract, Premise  to CRM webcleint 50 screen i.e to , when i click on identification tab my fields should populate into the screen.
    please guide.
    thanks
    ram

    This will involve customisation, there is no standard way to do it.
    Ben

  • How to transfer pc files to macbookair

    How to transfer data files like Word doc's, Excel spreadsheets from my old Dell Desktop PC to my MacBookAir?  The Windows PC Office for XP has been in use since 2003.  I've purchased and installed Microsoft Office 2011 for Mac.
    I also have photos on my old PC that I want to transfer to my Mac. 
    I also have Favorites and Bookmarks saved under various browsers e.g. Mozilla, Internet Explorer, Google Chrome.  Is it difficult to transfer these; or better to set them up with a new bookmark under Safari?
    Is it better to have the Apple staff make the transfer for me?  If so, can this be done using some kind of flash drive instead of taking the Desktop PC in to the store? 

    hi Paul
    My wife and I both moved to Mac's last year. The good news is that everything can be ported over, I recommend backing up everything to an external drive before moving data across. In answer to your questions.
    1) Yes Microsoft office on the Mac will open MSO files from your PC
    2) Yes again no problem.
    3) You can export all these bookmarks from their respective browsers and import into Safari. Mind you I'm using Chrome on my Mac not Safari. You can run Firefox too. So the only browser you can't run on the Mac is IE. So you'll need to export your favorites from IE and then import into Chrome, or whatever browser you're going to use on the Mac
    4) I did this myself, my wife took her old machine to the Apple store. I have to say I was very impressed with the way they managed the process. She took in both machines and then picken them up the next day and everything was moved and worked as she expected. You might want to drop off the machines on a Friday, go away for the weekend and pick them up the next week .
    Hope that helps

  • Where are the actual Aperture files located? Only in the application? I am transitioning to Lightroom and would like to only move some of the files. Advice appreciated. Also anyone know how to transfer in with edits?

    Where are the actual Aperture files located? Only in the application? I am transitioning to Lightroom and would like to only move some of the files. Advice appreciated. Also anyone know how to transfer in with edits? Using iMac, OS X, most recent Aperture and Lightroom 5.7 with plugin for Aperture.

    Define "the Aperture files".
    Read this concise guide.
    The files you imported into an Aperture Library can be exported (at any time, and repeatedly) using the command "File ▹ Export ▹ Originals".  Your Originals are never altered.  What went in is what comes out.
    Adjustments and changes to the metadata that you made since creating an Image in Aperture by importing a file are saved to a text file.  This file is combined, on-the-fly, with the Original to create the Image that you see in Aperture.  There is no file saved to disk that is the full-size Image.  Thumbnails are saved, and Previews are saved.  These are JPG files, almost always smaller than the Original.  They are not substitutes for the Image for the use you have.
    When you need a file of an Image to use in another program, you export the Image from Aperture.  "Export" means "Make me a file of this Image according to these file specs I'm providing".  The way to get files of your adjusted Images is simple:  create them by exporting.  Specify "Original size", and use a loss-less image-file format (e.g. TIFF 16-bit) if you want to retain as much visual information as possible.
    Search the Web for information about transitioning from Aperture to Lightroom.  Note that I say "transitioning".  You cannot move a database from one format to another without significant changes, and likely some loss of information.  Adobe provides a tool and some instructions.  I strongly recommend working out the process step-by-step, and then proceeding with first a few Images, then a bushel-ful, and stopping to use the first few, the the bushel-ful, before committing your entire collection to the process.
    As always, never use any computer file without having a back-up.
    We have seen mixed reports here of the success of the LR tool that creates a LR database from your Aperture database.
    If you want to carefully define the process, and test and refine it, use the excellent process-development, analysis, and execution program inShort.
    Sadly, there is not and can never be a good, thorough re-positioning of the digital assets in your Aperture Library to become digital assets in a LR database.  Just as a metaphor for any user contemplating transitioning to another digital asset manager:  that would be like digging up a house in one country, planting it in a hole in another country, and expecting to be able to use the toilet and the sinks, turn on the lights, cook dinner, and sleep soundly.
    HTH,
    Kirby.

  • How to transfer a pdf file to my kindle paperwhite?

    How to transfer a pdf file to my kindle paperwhite?

    You first need one or more apps on your iPad that support the types of file that you want to copy over to it, the iPad doesn't have a file system link a 'normal' computer, everything has to be stored within an app.
    For PDFs there are free apps such as Apple's iBooks app and also Adobe Reader - and paid-for apps such as GoodReader (which also supports read-only of word and excel documents). For documents the options include Apple's Pages app for Word documents, Numbers for Excel spreadsheets and Keynote for Powerpoint. And from third-parties apps such as Documents To Go ('premium' version) and QuickOffice Pro HD. As to how you then get the file to your chosen app will depend upon what the app supports - different apps will have different ways of copying their content to/from a computer e.g. via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via your wifi network, email, dropbox etc.
    For iBooks, which supports PDFs, you should be able to add the PDFs to your iTunes library via File > Add To Library, and they should go into the Books section of your library. You can then sync them to iBooks by connecting your iPad to your computer and selecting it on the left-hand side of your computer's iTunes (if you have iTunes on your computer then you can enable the left-hand sidebar via control-S), and on the right-hand side use the Books tab to select and sync them to the iBooks app.

  • How to transfer file from ipod touch to i tunes. i have files in my ipod , ut itunes is  new so its telling if u sync the ipod all the files will be replaced but no files in the itunes.. so kindly help me how to transfer the files  from i pod to itunesb

    how to transfer file from ipod touch to i tunes. i have files in my ipod , ut itunes is  new so its telling if u sync the ipod all the files will be replaced but no files in the itunes.. so kindly help me how to transfer the files  from i pod to itunes......

    Some of the information below has subsequently appeared in a document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991
    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was designed for you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchased content.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only media purchased from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software. Examples (check the web for others; this is not an exhaustive listing, nor do I have any idea if they are any good):
    - Senuti - http://www.fadingred.com/senuti/
    - Phoneview - http://www.ecamm.com/mac/phoneview/
    - MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/
    - Sharepod (free) - http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2 - Windows
    - Snowfox/iMedia - http://www.mac-videoconverter.com/imedia-transfer-mac.html - Mac & PC
    - iexplorer (free) - http://www.macroplant.com/iexplorer/ - Mac&PC
    - Yamipod (free) - http://www.yamipod.com/main/modules/downloads/ - PC, Linux, Mac [Still updated for use on newer devices? No edits to site since 2010.]
    - 2010 Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive - https://discussions.apple.com/docs/DOC-3141 - dates from 2008 and some outdated information now.
    Copying Content from your iPod to your Computer - The Definitive Guide - http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/ - Information about use in disk mode pertains only to older model iPods.
    Get Your Music Off of Your iPod - http://howto.wired.com/wiki/Get_Your_Music_Off_of_Your_iPod - I am not sure but this may only work with some models and not newer Touch, iPhone, or iPad.
    Additional information here https://discussions.apple.com/message/18324797

  • How to transfer file from application server to presentation server in background?

    Hi Experts,
    How to transfer file from application server to presentation server in background?
    Thanks in advance
    Namita

    Thanks Raman and Challa,
    We want to move file from application server to Shared folder, not on local machine. We checked FM which you guys have provided but those are not able to read file from application server.
    We need this program to run in background so that we can use this in daily process chain.
    Appreciate your inputs on this.
    Thanks,
    Namita

Maybe you are looking for

  • I keep getting the error message that "charging is not supported with this accessory" when I plug my ipod touch in to my macbook.

    Neither the macbook nor ipod touch are new, and I'm using the cable provided with the ipod touch as normal and so was just hoping someone could explain what might be causing this? thanks!

  • Can't seem to capture video clip

    I just upgraded from Final Cut Express HD to Final Cut Pro 4.5 HD. I'm using a Sony DCR-TRV320 as the pass thru between my VCR and my Mac. Using Final Cut Express, I have no problem capturing my video. But in FCP, I can view the video on my screen un

  • A Few More Quick Questions

    Alright, first, I'm just wondering, is there anyway to charge my iPod on antoher computer without it affecting the data currently on thye iPod? If I install iTunes on that computer and there's nothing in it, then wouldn't that automatically delete my

  • My iCal responds with an error.

    My iCal is constantly reporting an error.  It says, The server responded with an error.  The request for account ATT failed.  The server responded "502" to operation CalDAVAccountRefreshQueableOperation.  Help!!  how do I fix this????

  • LoadVars() w/ Dynamic Text

    OK. My text file is: Who_txt=<HTML><BODY> yadda yadda </HTML></BODY> First frame code: var txtWho_lv = new LoadVars(); txtWho_lv.onLoad = function() { who_txt.htmlText = Who_txt; txtWho_lv.load("../folder/folder/Who.txt"); When tested, I am only gett