Property Loader with Excel spreadsheet embedded into a Word doc

I know I can load test limits from an Excel doc using Property Loader but can I load test limits from an Excel table embedded in a Word document? Has anyone ever done this?

Jules,
I looked into how this could be accomplished, and it doesn't look like it is possible using off the shelf methods. Please if anyone figures out how to do that, i would strongly encourage you to write a Community Example . I think your closest work around would be to have the excel document linked in the word document http://office.microsoft.com/en-us/word/HA101208101033.aspx . Unfortunately in this situation, the excel file is still seperate from the word doc, and anyone reading the word doc would have to open the excel through the link to view its contents. Also if you move the document, you have to remember to move or change the path of the link. What is your motivation behind having the Excel Spreadsheet in a word document? I agree it would be a novel Idea, but as of now when you copy the object into the word document, it gets encapsulated by the .doc or .docx, and there is no clean easy way I have found to abstract it out. I also looked into the potential of dynamically linking the excel spreadsheet and word document, so when you would update one...it would update the other automatically, unfortunately this functionality doesn't exist (that I could find). Sounds like a pretty good product suggestion for microsoft though ; ) Keep me updated if you find a better work-around.
Richard S -- National Instruments --Applications Engineer -- Data Acquisition with TestStand

Similar Messages

  • A Spreadsheet Embedded in a Word doc

    This may be one of those very basic things, but I just can't find an answer in the documentation myself. I have a Word document that has an Excel spreadsheet embedded in it. When I make a pdf from that Word doc (Acrobat Pro 7.0), the Excel icon show up in the pdf but it's apparently only an icon. I can't open it.
    Is there a way to make a pdf with embedded objects like spreadsheets or Power Points in it that the reader can then open and access?
    TIA...

    Are the images placed in a table? Many Word user have the habit of doing that. Tables are not handles the same way in Word and Pages so they get "hidden" in Pages. One way to find this out is to change the size of the paper of the document. You do that in the Page setup in the file menu. Create a document that is much longer that the default one and see if you images will pp up.

  • Working with Excel spreadsheet embedded in access table

    Hello!
    I have Access DB which contain Excel spreadsheet objects embedded in table. To work with DB I use ADO-Tool based on ActiveX. Data passed to my program from GetRows method as 2D array of variants. As I understand I should convert variant to object refnum and then use this refnum with property and invoke nodes to get data from spreadsheet. How to select data type for VariantToData to work with Excel spreadseet?

    Hi,
    Isn't it the same that using Index Array function? I believe that problem is in conversion of variant to refnum. For example, if I change refnum data type to string in Variant To Data, no error appears, and I've got some text data (see the attachment).
    Attachments:
    Temp.zip ‏25 KB

  • Best way for using Property Loader with Excel

    I am trying to architect a test system to run a variety of tests (DIO, AIO, PWM...etc) and I noticed that Property Loader can be quite handy. I am trying to find the best method to utilize NI TestStand Property Loader to load test properties from Excel into some sort of parameter database. The properties shall be loaded only once when the test sequence is opened. The parameters of the excel table will have a format like this:
    TestType TestCondition  ECUPin#   Limits.High    Limits.Low  Units  PWM_Frequency  CAN_TX   CAN_RX
    DI            ON                    1                                                                                      0x0102   0x0304
    AI            OFF                   2                0             0.1                V                                0x1324   0x0405
    The table will look much more complex than this one, but once I know how to do this I should be fine. Does anyone have suggestions for what I am trying to do ?
    Thanks,
    Ayman

    There are a couple methods of thought here:
    Property Loader-  You can use the tool to export and import properties.  The best way to do it is to export the properties that you want in the Excel file using the tool.  Then make copies of the file and change the values in there.  This will ensure that once the values come back into TestStand they will all go to the correct place.
    FileGlobals Method-  You can create a large container which has all the correct variables in it in your file globals or locals.  There is an object in the TS API called a PropertyObjectFile.  This file is a simple text file that contains the properties, sub properties and values of any property object in TS.  You can easily just pass the container into it.  The problem with this is that you then have to create a VI or some tool to edit the values in it.  You can go in there and manually change them but it's not as intuitive.
    Property Loader to FileGlobal Container-  This would basically be a hybrid of the two.  Pretty much what you described in your post.  Where the property loader only has to load the container in your FileGlobals.
    Which method is best? It all depends on your application.  If you ever need to dynamically export the properties then you can't use the Property Loader. 
    One thing to remember is that you should only Import/Export properties that need to be changed in the Excel file.  This will help reduce the number of properties. 
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Somebody Knows how to use Roambi with Excel spreadsheet? I leed the process. Thanks

    Somebody Knows how to use Roambi with Excel spreadsheet? I leed the process for my IPAd

    I don't even know what it is, but have you explored the support available from the developer?  http://www.roambi.com/iphone-videos.html

  • Can I cut and paste directions obtained via maps into a word doc or something so I can see them if I can't connect to the internet

    Can I cut and paste directions form maps into a word doc - or save it somewhere on my iPad so I can access it when I can't access the Internet?

    Take a screen short.
    Simultaneously press the Sleep and Home button. You will notice an on-screen flash. If you have sound enabled, you will hear a camera click.
    The screen shot is stored in Camera Roll.

  • When trying to convert a pdf file into a word doc, i only get the graphics but not the text. How do i remedy this?

    When trying to convert a pdf file into a word doc I only get graphics but no text. What to do?

    Hey hamsa142,
    I think you are converting a scanned PDF to word.
    You might need to run OCR first to make the text recognizable and then convert it to word.
    Regards,
    Anubha

  • Using Property Loader with Renamed Steps

    If I have a test step in a loop where the step is renamed using RenamePreviousStep after each iteration, is there a simple way to use Property Loader to load test limits corresponding to the dynamically changing test name?
    The only way I have found to do this so far causes errors at runtime on the non-existent step names in the file which have to be ignored. Also it is not very slick to call PropertyLoader every time the loop iterates.
    Is there a more elegant way to load limits for steps which "don't yet exist"?

    How do you organise your limit file.
    Do you have a different Start/End Marker for each of your iterations
    so that you have the correctly named step(s) between the markers?
    You could try loading an array of limits into a local array(s) from
    your Limit File then index through the array as the datasource for your
    limits. Remember its a PropertyLoader, so its not limited to just
    limits. That way you only read it once and you are not tied to the Step
    name.
    I originally had all limits within a single Start-End marker pair. Having now given each limit set an individual Start-End marker and setting PropertiesListSource dynamically in the Loader Step in the loop, that works OK.  Perhaps not so elegant still as each iteration of the loop requires a Property Loader step instead of loading everything in one hit (I'm guessing there has to be some performance overhead in multiple property loader calls vs. a single load of all limits) but at least there are no errors on the loader step now I am only loading that test which exists after the loop rename.
    The alternative of loading data into arrays had ocurred to me and I may experiment with this if performance becomes an issue with the first approach.
    Thanks for your reply Ray, its much appreiated.

  • Oracle Heterogeneous Services to create link With Excel spreadsheet.

    Hi
    Please adivse how to use "Oracle Heterogeneous Services" to create a database link from Oracle to the Excel spreadsheet.
    Wishes
    Jawad

    Dear Anwar,
    I'm using XPSP2 10gR2Enterprise
    SID=ORCL
    host=andor (my PC's name)
    Pls help me. I'm struggling with HS also so I've followed your lines, meaning:
    I can create the database link, but cannot retrieve data from source. (see 7.)
    1a. I have created the Excel file c:\EXCL.xls
    NEV DATUM BOOL NUMBER
    Stefán Balázs 09.nov TRUE 0
    Sebestyén Dénes 10.nov TRUE -11
    Tóth Andor 11.nov FALSE 12.3
    c: is partition on the same server where 10g sits.
    1b. I've created an ODBC system DSN for this excel file, named EXCL.
    2. tnsnames.ora has bee nupdated by this:
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = andor)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    EXCL =
         (DESCRIPTION =
              (ADDRESS_LIST =
                   (ADDRESS = (PROTOCOL = TCP)(HOST = andor)(PORT = 1521))
              (CONNECT_DATA =
                   (SID = EXCL)
              (HS = OK)
    3. listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = EXCL)
    (ORACLE_HOME = D:\oracle\product\10.2.0\db_1)
    (PROGRAM = EXCL)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = andor)(PORT = 1521))
    4. initexcl.ora in hs directory:
    HS_FDS_CONNECT_INFO = EXCL
    HS_FDS_TRACE_LEVEL = 0
    Listener restarted.
    5. in iSQLPlus:
    SQL> CREATE DATABASE LINK excl USING 'excl';
    Database link created.
    6. in Enterprise Manager there is a Database Link:
         database links: EXCL.REGRESS.RDBMS.DEV.US.ORACLE.COM
    service name: excl
    7. testing the database link says:
    The Database Link is not active.
    ORA-28545: .Unable to retrieve text of NETWORK/NCR message 65535... ORA-02063: previous 2 lines from EXCL
    Please help me to get over this.

  • Is there a way to import my address book to an excel spreadsheet? into excel

    I would like to transfer my contacts from address book to an excel spreadsheet.  Is this possible. 

    If you can get the data out and related info seperated by tabs, new lines of info seperated by returns, then it can be imported, even pasted into a spreadsheet.
    Name *tab* phone numer *tab* address
    Name *tab* phone numer *tab* address
    like that

  • Unable to embedded xls files word doc with acrobat distiller 6

    Hi,
    I have a problem to convert a Microsoft Word docs with embedded excel(*.xls) to PDF using Adobe Distiller 6. The excel file will become an image file after conversion.
    Please advise on what went wrong or is this a limititaion of Adobe Distiller 6.
    Thank you in advance.
    Regards,
    Haikal

    I suspect that what you are asking as nothing to do with Acrobat. For what you are doing, there is no need to use PDF Maker (unless you are looking for links or such). You do not have to use Distiller (unless you are taking about the Acrobat Distiller printer with AA5 and earlier), but simply print to the Adobe PDF printer (that automates the use of Distiller). In fact, Distiller can not handle DOC files, so I suspect you are using AA5. However, the end result will be based on whatever WORD sends to the printer, not how Acrobat converts it. If text is sent, then Acrobat will convert it accordingly. Sounds like WORD is sending the Excel file as a graphic. It may just be that is how WORD handles that OLE aspect of the embedding.
    I am no expert on WORD (I use another package), but I really doubt that Acrobat is at fault. I would look at what WORD is doing. One way to do this is to print to a PS file (you can do this with the Adobe PDF printer using print-to-file. Open the PS file and you should find a graphic structure in the PS that represents the Excel file.

  • How do I convert a .pdf with columns into a word doc?

    I know how to convert a regular .pdf to a word doc but when I try and convert one with columns it combines the columns as if it thinks it is all straight across lines with a big space in it.

    In my experience, there's not much you can do outside of copying and pasting page by page.

  • How to embed an illustrator file into a word doc to make a template

    I am trying to make a word template for my company's proposals that we send out to clients. I have created the image in illustrator as an 8.5x11 and saved it for 'web & mobile' use with the highest quality setting. I open the document in microsoft paint, copy everything, and then paste it into the header section of my word doc. I choose the option to bury behind text. My problem is that when I paste from paint into word, the document shrinks and is no longer 8.5x11. This requires me to stretch the image, but it pixelates it beyond what I can allow to be used. Is there an easier way to make a word doc template? I am using Illustrator cs4 and Microsoft 2007 (I know, its really really old).

    http://office.microsoft.com/en-us/word-help/insert-change-or-remove-background-colors-imag es-or-text-in-a-word-2007-document-HA010097032.aspx?CTT=1 Turn a picture into a background or watermark You can turn a picture, clip art, or a photo into a watermark that you can use to brand or decorate a document. 1.On the Page Layout tab, in the Page Background group, click Watermark. 1.Click Printed Watermark. 2.Click Picture watermark, and then click Select Picture. 3.Select the picture that you want, and then click Insert. 4.Select a percentage under Scale to insert the picture at a particular size 5.Select the Washout check box to lighten the picture so that it doesn't interfere with text. The picture that you selected is applied as a watermark to the entire document. Tip  If you want to use an object, such as a shape, as a watermark, you can manually paste or insert it into the document. You cannot use the Printed Watermark dialog box to control settings for these objects.

  • I can't print PDF's right with any driver I can print word docs draft qual.

    here's the dealio- my new core2duo doesn't want to communicate with my hp deskjet 832c. I was able to print through my ethernet network to a shared 832c once, and it did print right, but I can't do it again because whatever program I'm in when I try to select a shared printer crashes. That doesn't help with the usb connected printer on my machine though; the only good print I've been able to get is draft quality only in a word doc. My printer spits out tall distorted text, partial and blank pages etc. The new mac mini with the core2duo is doing the same thing with it's hp deskjet 840c.
    iMac   Mac OS X (10.4.9)  

    here's the dealio- my new core2duo doesn't want to
    communicate with my hp deskjet 832c. I was able to
    print through my ethernet network to a shared 832c
    once, and it did print right, but I can't do it again
    because whatever program I'm in when I try to select
    a shared printer crashes. That doesn't help with the
    usb connected printer on my machine though; the only
    good print I've been able to get is draft quality
    only in a word doc. My printer spits out tall
    distorted text, partial and blank pages etc. The new
    mac mini with the core2duo is doing the same thing
    with it's hp deskjet 840c.
    iMac   Mac OS X (10.4.9)  
    Well Mactopians, it seems that my wife has solved this issue by downloading and installing HP's OSXInkjet driver ( even though we're using deskjets) when she visited the HP website. The wonders never cease.

  • Now that i have installed the software how do i change a pdf into a word doc

    now that i have installed the software how can i change a pdf into a word doc

    Hi patm23422687,
    I hope by saying 'installed the software', you mean that Acrobat XI is now installed on your computer.
    Now, open the PDF in Adobe Acrobat and choose "File> Save as Other> Microsoft Word"
    This is all you need to do
    Please try and let me know if you need further assistance.
    Regards,
    Anubha

Maybe you are looking for

  • I would like to update to mac os x 10.6. Would it affect info on harddisk

    To whom it may concern, I have a MacBook Pro and the current software version is Mac OS X Version 10.5.8 I am looking to update software with Snow Leopard Mac OS X Version 10.6 and wondered will this affect any content on the current system such as M

  • Streaming to a wireless speaker-help

    Hi, I have a bose sound touch wireless speaker system which I stream my itunes across from my macbook. The problem is I have to have my mac on to access my itunes account. I was wondering if I had itunes match, would I be able to stream from say my i

  • Formating string to date format in vc

    hai, function module in production return a date in type of char10. now i need to convert into proper data format. can any one help me.

  • I want to take out the podcast from the screen

    i just bought the macbook pro and i was just looking up through the apps and i open the podcast capture and the boot camp assistant and i want to take it out of the screen and i can't. How can i do about it?

  • SP2-0552: Bind variable not declared

    Hi, I am using below bind values in a sql query. declare B1 number; B2 varchar2(10); B3 varchar2(10); B4 number; B5 date; B6 date; B7 varchar2(30); B8 number; B9 number; B10 varchar2(9); B11 number; Begin :B1 := 24152; :B2 := 'CR_CORP'; :B3 := 'COST'