Can we drag table from excel to form graphs on Keynotes?

I am used to drag tables that I create on excel to form charts on powerpoint.
Will I be able to do so on keynote. I do not wish to duplicate my efforts on excel .
Also, is there smart graphics equivalent on Keynotes too?

Another method to import Excel file is using DDE, its advantage is that it does not need to install the ODBC driver.
Regards,
George
I want the user to press a button and import data from Excel into a temp Oracle table.
Is this possible and how do I do it?
If this is possible, how can I programmatically update the permanent table with the
data in the temp table based on the field name (such as budget_line_number)
instead of a static value (such as '12345') in the where clause. I.E, I want to write code like:
UPDATE budget_table --- this is the permanent table
SET all fields in the permanet table
where budget_line_number = budget_line_number --from the temporary table
Thanks.
Bob

Similar Messages

  • Upload data from excel to forms 9.0.4 using webutil 1.0.5

    Hi,
    can anybody provide me the code how to upload the data from excel to forms 9.0.4 using ole2 fuction. From forms to excel it is working fine.
    Regards

    Hello,
    Instead of selecting one key figure in data view, please select all key figures of the planning book and then try all the steps which you have carried out.
    please revert after you carry out this.
    Regards,
    Prafulla

  • I am creating a catalog and need a way to mass import tables from excel into indesign.  Any ideas?

    I am creating a catalog and need a way to mass import tables from excel into indesign.  Any ideas?

    Third-party plugins for InDesign can automate the process. Here's a thread from InDesignSecrets.com forums:
    http://indesignsecrets.com/topic/plugins-for-automating-catalog-production

  • DDE - From EXCEL to FORMS

    Hi!, I have used (DDE PACKAGE) to get data from EXCEL SHEETS into ORACLE FORMS, and it worked properly , my question is if there is a way or idea (Other than using TIMERS) to have a link between the - Very frequently changed EXCEL cells - and ORACLE FORMS that would keep intouch with the most recent updated EXCEL cells.
    Please note that I could solve the problem using timers but that was against the overall performance.
    Thanks,
    Firas AlKhatib

    Hi Firas AlKhatib
    Pls Can U send me the form which transfers data from excel into forms?
    I'll be gratefull to u...
    Prashanth Deshmukh

  • Import from excel to form

    Hi All,
    I'm importing data from excel to forms.
    I'm Importing the data from the first worksheet.
    For this I'm using the code
    OLE2_DEC.V_EXCEL_WORKSHEETS := CLIENT_OLE2.GET_OBJ_PROPERTY (OLE2_DEC.V_EXCEL_WORKBOOK, 'Worksheets');
    V_LIST := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG (V_LIST, *1*);
    Here the Number '1' in the above line specifies that the data from the first worksheet is to be imported(that is left most worksheet in the excel).
    Now I have more than one worksheet(in the same Excel sheet) from where the data is to be imported.
    Due to the above code Everytime I want to import data from work sheet other than the first, I'm making the worksheet to be imported to be the first sheet(left most).
    So, to avoid this Can I loop something So that I will get all the data from all the work sheets in the Excel avoiding Manuall adjustment of the worksheets.

    So, to avoid this Can I loop somethingDid you try it? Maybe something like
    OLE2_DEC.V_EXCEL_WORKSHEETS := CLIENT_OLE2.GET_OBJ_PROPERTY (OLE2_DEC.V_EXCEL_WORKBOOK, 'Worksheets');
    FOR i IN 1..MAXNUM LOOP
      V_LIST := CLIENT_OLE2.CREATE_ARGLIST;
      CLIENT_OLE2.ADD_ARG (V_LIST, i);
    END LOOP;

  • Importing tables from Excel

    Hi,
    Hope you had a nice weekend.
    When I import a table from Excel, for some reason I'm not getting the header row text in my second column (the whole thing has two columns) and the border on all the cells like I have in Excel.
    Is there a way to make sure it imports the spreadsheet with the border and the header row text in the second column?
    Thanks!

    I'd check the cell range specified when you import, and perhaps tick the 'include hidden cells'  option.
    Might be worth saving your Excel file back to an older version too, as long as no required features are lost.
    You can't bring Excel border styles over, though you can specify an InD table style on import...

  • Can't drag photos from previous import to a folder in lightroom

    after uploading photos into lightroom, I can't drag them from 'previous import' to another folder in Lightroom.  Anyone else experience this?

    You will probably get better help in Photoshop Lightroom
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How to upload data from excel to form using webutil

    Hi,
    In the sample provided by Oracle
    http://www.oracle.com/technology/products/forms/htdocs/webutil/howto_ole.html
    Note 247606.1 How to Copy Records From a Form Into Excel
    It shown the methods of how to copy data from form to excel but is there any sample to provide the step on how to read the cell from excel into Form in 10g.

    declare
    args client_ole2.list_type;
    application client_ole2.obj_type;
    vworkbooks client_ole2.obj_type;
    vdoc     client_ole2.obj_type;
    vworksheet     client_ole2.obj_type;
    vrange               client_ole2.obj_type;
    begin
    -- create app object
    application := client_ole2.create_obj('Excel.Application');
    client_OLE2.SET_PROPERTY(application, 'Visible','True');
    -- get workbooks object
    vworkbooks := client_ole2.get_obj_property(application, 'Workbooks');
    -- and open a file
    args := client_ole2.create_arglist;
    client_ole2.ADD_ARG(args, 'c:\tp_ae.xls');
    vdoc :=client_ole2.INVOKE_OBJ(vworkbooks,'Open',args);
    client_ole2.destroy_arglist(args);
    -- get a worksheet object
    -- for this to work you need to know the sheet name or its index
    args := client_ole2.create_arglist;
    client_ole2.ADD_ARG(args, 1); <-- name or index
    vworksheet := client_ole2.get_obj_property(vdoc,'Worksheets',args);          
    client_ole2.destroy_arglist(args);
    -- get a range object which in this case is just a cell
    -- for this to work you need to know the cell coordinates
    args := client_ole2.create_arglist;
    client_ole2.ADD_ARG(args, 'B6');          
    vrange := client_ole2.get_obj_property(vworksheet,'Range',args);
    client_ole2.destroy_arglist(args);
    -- and here you get the value
    message(client_ole2.get_char_property(vrange,'Value'));
    -- release objects          
    client_ole2.release_obj(vrange);
    client_ole2.release_obj(vworksheet);
    client_ole2.release_obj(vdoc);
    client_ole2.release_obj(vworkbooks);
    client_ole2.release_obj(application);
    end;

  • Can i drag files from one computer to another

    can i drag files from one computer to another

    You can, if you want to transfer files between macs I advies to use AirDrop(wi-fi needs to be enabled). Use shift+command+R, this will take you to your AirDrop in finder. Do this on both computers and you should see the user of the mac where you want to transfer files to.
    If the seconds computer is a Windows, you can alway use a USB Drive, External Drive, through Dropbox(install dropbox on both computers and download the files that you need on the second computer) and if the file is small even mail.
    Regards,
    Jeroen

  • How can i import tables from a different schema into the existing relational model... to add these tables in the existing model? plss help

    how can i import tables from a different schema into the existing relational model... to add these tables in the existing relational/logical model? plss help
    note; I already have the relational/logical model ready from one schema... and I need to add few more tables to this relational/logical model
    can I import the same way as I did previously??
    but even if I do the same how can I add it in the model?? as the logical model has already been engineered..
    please help ...
    thanks

    Hi,
    Before you start, you should probably take a backup copy of your design (the .dmd file and associated folder), in case the update does not work out as you had hoped.
    You need to use Import > Data Dictionary again, to start the Data Dictionary Import Wizard.
    In step 1 use a suitable database connection that can access the relevant table definitions.
    In step 2 select the schema (or schemas) to import.  The "Import to" field in the lower left part of the main panel allows you to select which existing Relational Model to import into (or to specify that a new Relational Model is to be created).
    In step 3 select the tables to import.  (Note that if there are an Foreign Key constraints between the new tables and any tables you had previously imported, you should also include the previous tables, otherwise the Foreign Key constraints will not be imported.)
    After the import itself has completed, the "Compare Models" dialog is displayed.  This shows the differences between the model being imported and the previous state of the model, and allows you to select which changes are to be applied.
    Just selecting the Merge button should apply all the additions and changes in the new import.
    Having updated your Relational Model, you can then update your Logical Model.  To do this you repeat the "Engineer to Logical Model".  This displays the "Engineer to Logical Model" dialog, which shows the changes which will be applied to the Logical Model, and allows you to select which changes are to be applied.
    Just selecting the Engineer button should apply all the additions and changes.
    I hope this helps you achieve what you want.
    David

  • How to update (add new data in different tab) existing table from Excel

    i've an existing table, for instance User Profile table, it consists of few tab in the table which contains different data... recently i've added new tab to the existing table and i would like to upload a particular data for this new tab... is there any way to upload (insert new data for the tab on existing data) this particular data into the existing table from Excel file?
    could it be done by using lsmw?
    Edited by: Yeong Kang Liew on Apr 5, 2010 4:35 AM

    Check HELP on MODIFY & UPDATE statements.

  • Can't drag files from Mini Bridge

    Hi
    It's seems as an issue but I can't drag files from Mini Bridge to workspace thought my colleague can do that. Is it a problem with my configuration or internal bug of photoshop CS6?

    It works now! Yes, I think "Big" Bridge wasn't start what time. Thank you!

  • Can't drag songs from itunes onto anything (desktop, flash drive, etc.)

    This is weird.
    All of a sudden, I can't drag songs from itunes onto the desktop, any folder on my hard drive, my flash drive, or my spare hard drive. On a health computer, if you drag a large number of files, first they land as white icons and they fill in as they get transferred. With my computer, the white icons stick around for a few second and then disappear. The first time I try, I can transfer 1-10 files successfully. After that it stops working. Here is what I've done.
    1] Upgraded my system from 10.3.X to 10.4.5
    2] I upgraded itunes from 7.0 to 7.3.1
    Has anyone seen this before?
    Any suggestions?
    Thanks!
    Jeff

    Since I can not edit my own post I'll have to reply to myself... Sorry for the "spam" on the forums.
    I DID find something out (while playing with this some more)...
    Try and copy as many songs as you can with UNIQUE titles. I've noticed that when you drag the songs in iTunes to the desktop (or a folder) the file it creates/copies is named like so: "songtitle.mp3."
    Apparently the Finder and iTunes don't play well together [enough] to prevent several files of the same name from appearing - in most OS's I've played with (Linux and Windows, in addition to other Apple & Mac OS's over the years) there's a mechanism for handling this... Windows just adds a number to the end the of the second (and all future occurring) file(s) of the same name - as does most Linux builds I've used... Apparently the Finder in OS X just doesn't do anything - at all - when it discovers this "name error."
    What I had to do (I was copying my Christmas music - do you know how many "Jingle Bells.mp3" files you can have?!) was make many folders or manually rename EACH FILE one by one so that others could be copied in the same place since the file name would always be JUST THE SONG NAME and the extension (and I do tend to keep my files in higher bitrate MP3 format for easier shuffling from OS to OS as I tend to use (in case you've not noticed) many different ones at any given time).
    So, try avoiding any songs with the same title (or altering the title in iTunes somehow), or make separate folders to keep the same song name files from being created in the same place; and see if that doesn't clear this problem up for you - it did for me. ^_^
    And sorry for being so "wordy" on this post. ^_^;

  • Can't drag video from source monitor to timeline

    I have been working a few years with Premiere Pro (now CC) and this never happened to me before.
    I can't drag video from the source monitor to the timeline. What is happening? The sound can be dragged but there is a hand with a 'no sign' for the video??? How can I solve this problem without starting over again?

    Please dont double post!!!!

  • Running MacOS 10.8.4  Contacts 7.1 (1170) can't drag cards from one folder to another.

    I am running 10.8.4 with contacts 7.1 (1170).  I find I can't drag cards from one (any) group to another group.  When I restart it shows the card and indicates that it should accept it as it isn't in that group.  But doesn't move cards.  Then it no longer gives any indication the cards are moving when I drag.  When I shut down and restart it gives indication the cards are moving but none move and then no longer gives any indication when I drag.  I am syncing with icloud.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash.
    Triple-click the line below on this page to select it, then copy the selected text to the Clipboard (command-C):
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 -o -acl \) 2> /dev/null | wc -l
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    The output of this command, on a line directly below what you entered, will be a number such as "41." Please post it in a reply.

Maybe you are looking for

  • Problem sending pictures

    Can't send a picture while I'm texting on my IPhone.  I keep getting message not delivered.  Text messages work fine. Any suggestions?

  • I cannot verify icloud. must have another password i think.

    I cannot use Icloud on my iphone 5. Allways asking to verify...then ask me for password (apple id)...my password has been changed a little while ago. The phone does not accept the correct password. Maybe there is another password that I put in when I

  • Bookmark linking to external website

    Hi everyone, I have a list of bookmarks that were created automatically from a table contents when I exported an indesign file to pdf. I need to manually add another bookmark in the pdf which I was able to do but I also need this new bookmark to be a

  • Connecting ODBC under Win7 64 Bit

    Hi , I'm under win 7 64bit , i can't define in the ODBC a database for MS Access only sql server. I have a MS data base which i want connect to my CVI Soft through the ODBC Any idea how can i do that ? Kobi Kalif Software Engineer Solved! Go to Solut

  • Organizer fails to respond

    Elements 9 installed early 2011.  Have opened Organizer and loaded new photos and used individual photos for printing, etc..  Clicked on desktop icon and opened Organizer as usual but I cannot access any photos or even backup to a DVD.  Message "Orga