Retain formatting in Excel when retrieving data

I am attempting to create reports using the Excel add in. Whenever I set up borders or fill in cells in Excel and then retrieve data, the formatting disappears. I have the formula preservation mode on and that's what's described in the documentation to do. I'm a new user and feel stupid asking but I just can't get it to work. I'm on version 6.5.3 in case that matters.

Hi,for me the most effectiv way to keep formats and formulas on a retrieve is to protect the worksheet before. Therefore:- lock each cell on the sheet except the ones which should be updated by the retrieve (via menue "Format/Cells..."- protect the worksheet (via menue "Extras/Protection..."- RetrieveKind regards,MarcP.S. For I'm working with a german version of Excel, the above mentionned menue descriptions may be different to my "translations".

Similar Messages

  • EVDRE error "encountered problem when retrieving data from webserver"

    Hi,
    in a EVDRE we always get the error "encountered problem when retrieving data from webserver"
    When analysing this further we noticed this is always generated when a base member is selected in the CV and the expansion on the row for this dimension is has one of the following expansion settings:
    DEP
    ALL
    NOEXPAND
    if we select SELF, the error disappears again and the EVDRE works fine again ... is this normal behavior?
    there is no problem with application nor dimension.
    D
    solved it

    Note that the keyword "ALL" does not include the member itself. This may cause some confusion, but as Harish implies, when you select a base member it finds no matches if your memberset is "ALL".
    If you want to design a report to handle the user moving back and forth between base and non-base members in their CV, you either need to include SELF,ALL or SELF,DEP, or something similar....
    OR you need to get a little fancier, and use EVPRO to look and see if the CV member is base -- evpro(app,member,"CALC") -- and then use some conditional logic in Excel to choose the correct expansion options. If Calc=N, use Self, otherwise use SELF,DEP or whatever you choose. This can be a bit tricky if you then want the user to be able to drill down in the report (especially if you want the workbook option to insert add'l rows on the expansion, rather than replace), but it's all possible.

  • Weblogic slowers down when retrieving data through JMX in SSL mode

    weblogic slowers down when retrieving data through JMX in SSL mode..is this has been face by anyone?
    kidnly help me..

    Nihil Somani wrote:
    weblogic slowers down when retrieving data through JMX in SSL mode..is this has been face by anyone?
    kidnly help me..Hi. This is the JDBC newsgroup, so asking about SSL and JMX isn't going to get much
    response, but you'd expect SSL to be slower...
    Joe

  • How to retain format in excel?

    Is there any way to retain formatting in excel once a retrival is done i.e. Total bold and underlined?Thanks,Calvin

    As long as I remember, you can do this by unchecking the "Use styles" check-box in Essbase/OptionsRegards.

  • EVDRE encountered an error when retrieving data from web server

    Hi
    When I am trying to open Data Input=>Build a schedule using a dynamic template in BPC version for SAP netweaver, I am getting the below error "EVDRE encountered an error retrieving data from the Web Server". 
    I am not able to open any template, every time I am getting the same message. I have tried again after reprocessing all the dimension.
    Even I have tried in appset APSHELL also, there also I am getting the same error
    Request you to help me to resolve the above error which will allow me to proceed further.
    Thanks in Advance.
    Venkat

    Hi,
    Beside Nilanjan's solution, this error could also occur when the expansion is running more rows than the Excel limit allows (65'000 rows and 256 cols for Excel 2003)...
    Even when you're using suppress field to reduce the number of rows, the first sequence is to retrieve the complete dataset before performing any suppression. And this could of course exceed the limit sometimes.
    Hope this helps.
    Kind Regards,
    Patrick

  • How to refresh the current page when retrieving data from database

    hi all
    in my application i want to navigate from different tables to different forms.  The data in the table and in the forms is comming fromthe database. when i select a navigation link to database of a form it is connecting to database.  so im manually refreshing the refresh button of I.E. which is big headache.  so is there any way to refresh my current table or form dynamically at run time to retrieve from database
    Thanks and regards
    khaja

    Hi,
      Refreshing a connection to Database means re establishing your connection each time.It will be load for the DB to load the data every time generally not advisable to do.
      Inorder to get the value from the DB you have load the driver and connect it using fireplug with the view for navigations.
      for the same refer this link.
    http://help.sap.com/saphelp_erp2004/helpdata/en/51/2c747ecd037842943bdb38be214719/frameset.htm
    Hope it helps.
    Rdgs,
    Guru

  • Retaining formating of text when write new file with FILEIO

    Hi all,
    I wonder if there is any way to retain the formating of the
    text when I write it in a new file using FILEIO. In particular I
    have the following text in a field member:
    test <background = L1_garaz/> (text in the tag has
    color and itsbold) test
    I use the following code to write the above text in a new
    filw using FILEIO:
    on mouseup
    annot = member("annotator").text
    path = the moviepath & "Annotated_text\"
    whichanno = baGetFilename( "Save", ""&path&"", "",
    "doc files|*.doc", 0, "Save doc file", 0, -2, 0 )
    myanott = new(xtra "FileIO")
    myanott.createfile(whichanno) --create
    myanott.openFile(whichanno,0)
    writeString(myanott,annot) --write the new string
    myanott.closeFile()
    myanott = VOID
    end
    the problme is that despite the type of file that i will
    choose to save it (.doc, txt , etc) it refuses to save the text
    with its initial formating (with the color, and bold words). Any
    idea how to solve this?

    "wgb14" <[email protected]> wrote in message
    news:fc7nf2$av3$[email protected]..
    > Hi all,
    >
    > I wonder if there is any way to retain the formating of
    the text when I
    > write
    > it in a new file using FILEIO. In particular I have the
    following text in
    > a
    > field member:
    >
    > test <background = L1_garaz/> (text in the tag has
    color and itsbold)
    > test
    >
    >
    > I use the following code to write the above text in a
    new filw using
    > FILEIO:
    >
    > on mouseup
    >
    >
    > annot = member("annotator").text
    > path = the moviepath & "Annotated_text\"
    > whichanno = baGetFilename( "Save", ""&path&"",
    "", "doc files|*.doc", 0,
    > "Save doc file", 0, -2, 0 )
    >
    > myanott = new(xtra "FileIO")
    >
    > myanott.createfile(whichanno) --create
    > myanott.openFile(whichanno,0)
    > writeString(myanott,annot) --write the new string
    > myanott.closeFile()
    > myanott = VOID
    >
    > end
    >
    > the problme is that despite the type of file that i will
    choose to save it
    > (.doc, txt , etc) it refuses to save the text with its
    initial formating
    > (with
    > the color, and bold words). Any idea how to solve this?
    >
    What file format do you use to save the text?
    Of course you need to use an appropriate file-format, or
    invent your own.
    Maybe try HTML or RTF.
    Richard.

  • Error when retrieving data from remote url

    Hello,
    I'm trying to do something that should be very simple --
    letting a user enter something in a textbox, then using that data
    as a script parameter when calling a remote cgi script, and
    returning the results to the screen.
    The remote cgi is sending data in plain text. I have looked
    at several examples, and I've tried using an XMLHttpRequest, I've
    tried using the servicemonitor.swf methods, and I've tried with
    URLRequest and URLLoader methods. All fail in one way or another.
    Here's the code for the URLRequest/URLLoader method...
    function fetchISSN(myform) {
    air.trace("Starting Fetch");
    var mytitle = myform.title.value;
    air.trace("TITLE: " + mytitle);
    var reqURL = "
    http://grlinker.coalliance.org/grbin/ilu_rmt.cgi";
    air.trace("URL: " + reqURL);
    var variables = new air.URLVariables("title=" + mytitle +
    "&isf=plain");
    air.trace("URLPARMS: " + variables);
    // var element = document.getElementById('results');
    var request = new air.URLRequest(reqURL);
    air.trace("Request Object Created");
    request.data = variables;
    air.trace("Data Added to request");
    request.method = air.URLRequestMethod.POST;
    var loader = new air.URLLoader();
    air.trace("Loader Object Created");
    loader.addEventListener(air.Event.COMPLETE, loadComplete);
    loader.addEventListener(air.Event.OPEN, loadOpen);
    try {
    loader.load(request);
    } catch(e) {
    alert('Could NOT load data: ' + e);
    } // end of function fetchISSN
    function loadComplete(event) {
    // alert('Downloaded ' + loader.bytesTotal);
    alert('Complete');
    // element.innerText = loader.data;
    } // end of function loadComplete()
    function loadOpen(event) {
    alert('Downloading');
    } // end of function loadComplete()
    And the HTML that calls it...
    <table width="280" border="1" align="center">
    <tr><td align="center">
    <font size="2">Enter a title and click
    submit.</font>
    <form name="issn">
    <input type="text" name="title" /><br>
    <input type="submit" name="submit" value="Submit"
    onClick="javascript:fetchISSN(this.form)" />
    </form>
    </td></tr>
    </table>
    Things go fine until it hits the loadComplete function. At
    that point, the following error is generated...
    Error: The application attempted to reference a JavaScript
    object in an HTML page that is no longer loaded.
    at __HTMLScriptFunction/throwJSObjectDead()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    Can anyone give me any advice or even a reason for this
    failure. I did find a bug about this in the bugtracker, it says it
    is resolved with an "external" resolution. I'm not sure what that
    means. Is there a patch I'm missing? Am I doing something really
    stupid?
    Just for reference, I'm on a Mac running OS X 10.5.6, using
    the SDK for development.
    Thanks!
    Scott

    Hi,
    Can you try putting the declaration of the URLLoader instance
    outside your fetchISSN function and see?
    That is:
    var loader;
    function fetchISSN(myform) {
    //your code above this line
    loader = new URLLoader();
    //rest of your code

  • How to show NULL value when import data into excel

    when retrieve data from sql server and import these data into excel.
    data source  is like : select a ,b c from tab
    if a,b,c is nullable. when import these NULL value into excel, it becomes blank value, there is nothing in the excel cell.
    if i don't want to use select isnull(a,'NULL') as a to convert the values.
    what's else can i do to make it? is there a way to prevent changing the NULL to blank ?
    or is there an easy solution to replace all the blank value to NULL in the excel ?

    help me ~

  • Query Report:To Retrieve Data from A/R Invoice and A/P Invoice

    Hii Experts,
          I am a new Sap B1 Trainee.I am facing a problem when retrieving data from A/R Invoice and A/P Invoice in order to track
    Expenditure and Revenue according to a Bussiness partner,
    I am using union to retrieve the information,but it is saying a error that  Error Converting Varchar to Numeric and also
    i would like to know how can i show the total final payment by reflecting Downpayments in A/R Invoice and A/P Invoice
    With Regards
    Cherry.

    Hii.
    My Sap B1 version is 8.8.1 and patch level is 20. Actully i need a scenario where i can able to show both Expenditure and Revenue of a particular bussiness partner and profit/loss in a single query report.
    I need some tips regarding this,When i am doing union i am getting conversion error converting varchar to numeric when i take
    Sum(Line Total) from OINV and Sum(line total) OPCH group by docdate and docentry and BP .
    and another scenario is how to deduct A/P downpayment or A/R downpayment from A/P invoices and A/R invoice to get the final Revenue and Expenditure ..
    Thanks & Regards
    Cherry

  • Ssrs generates blank extra page when no data is selected

    In a new SSRS 2008 report that I just setup, there are 5 datasets that are located on the main report that refer uniquely to 5 tablixes.  There are no subreports for performance reasons. The purpose of the ssrs report is to export data to excel and
    have each report go to a separate tab in the excel workbook. This occus since on each tablix, has the 'add a page break after', 'repeat header columns on each page', and 'keep header visible while scrolling'.
    These reports do export to different tabs in excel when they contain data.
    On each of the tablixes I have the 'NoRowsMessage' filled in in case there is no data.
    The problem occurs when there is no data for a tab (unique report) and only 1 report selected. The error message is generated and there is a blank page after the error message is generate. Is there a way for me to get rid of the blank page after the report
    is generated that says there is no data selected?

    In a new SSRS 2008 report that I just setup, there are 5 datasets that are located on the main report that refer uniquely to 5 tablixes.  There are no subreports for performance reasons. The purpose of the ssrs report is to export data to excel and
    have each report go to a separate tab in the excel workbook. This occus since on each tablix, has the 'add a page break after', 'repeat header columns on each page', and 'keep header visible while scrolling'.
    These reports do export to different tabs in excel when they contain data.
    On each of the tablixes I have the 'NoRowsMessage' filled in in case there is no data.
    The problem occurs when there is no data for a tab (unique report). The message I want for no rows does show up, but the message does not create a new tab in excel. The message appears on top of one of the reports that does have data.
    Thus when there is 'no data' for report(s), is there a way in ssrs 2008 to have that message appear on unique tabs in excel when the data is exported to excel? If this is possible, can you tell me how to accomplish this goal?

  • Retrieving data from Excel format to internal table(deep structure)

    hi all,
    can anybody help me how to Retrieving data from Excel format to internal table(deep structure)
    and if u have any sample code for that please send it.
    my internal table is like this
    DATA: BEGIN OF ty_text,
    vbeln TYPE vbeln,
    posnr TYPE posnr,
    seqno TYPE seqno,
    textid TYPE tdid,
    tdline TYPE tdline,
    END OF ty_text.
    DATA: BEGIN OF ty_item,
    vbeln TYPE vbeln,
    posnr TYPE posnr,
    dispct1(16),
    dispct2(16),
    dispct3(16),
    text LIKE table of ty_text,
    END OF ty_item.

    hi,
    check this code
    TABLES:zmatnr.
    TYPE-POOLS  truxs.
    DATA : itab LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA row LIKE alsmex_tabline-row.
    data : gi_final like zmatnr occurs 0 with header line.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER : pfname LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfname.
      PERFORM search.
    START-OF-SELECTION.
    perform process.
    form process.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = pfname
          i_begin_col             = 1
          i_begin_row             = 2
          i_end_col               = 12
          i_end_row               = 65000
        TABLES
          intern                  = itab
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      describe table itab lines itab_count.
       row = 1.
      loop at itab.
        if itab-row <> row.
          append gi_final.
          clear gi_final.
        endif.
        case itab-col.
          when '1'.
          gi_final-MATNR = itab-value.
          when '2'.
           gi_final-Maktx = itab-value.
          endcase.
        row = itab-row.
      endloop.
      append gi_final.
      clear gi_final.
    endform.
    FORM search .
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          static    = 'X'
        CHANGING
          file_name = pfname.
    ENDFORM.
    regards
    siva

  • List View does not retain date formats from Excel

    i am using List View control to isplay data. When i scroll the horizontal bar inlist view, the date format changes to numbers. is there were to stop this happening.
    regards
    Chandra

    Hi Chandra,
    Are you getting the values from any live connection or is it static data from the excel file?
    You can also try to goto properties of component and in the appearence tab,select the format of the values as "DATE".
    Incase you are getting the values from the live connection, you can select a different cell which would reference to the data coming from the connection and use it into the components.
    e.g.: if values are coming in cell"A1" then goto some empty cell as B1 and type in"=A1" and use this new cell into the component.
    Let me know if this works.
    Thanks,
    Amit.

  • Date format in excel

    hi all,
    i am using form6i.
    i am writing data into excel sheet(using ole2 package). i have one date column among them. The date format in excel should be in 'DD/MM/YYYY'.
    In my form i have date format like 'YYYY/MM/MM HH:MI:SS'. so i have converted that column using
    TO_CHAR(TRUNC(:date_col),'DD/MM/YYYY').So i am getting output in the format what i need,but still in excel i am seeing data format as 'DD-MM-YY'.
    is any conversion is required while writing into excel?
    but when i set the excel data format should be in 'DD-MON-YYYY'
    i am getting output as '26-JAN-10' but i want output in excel like
    '26/JAN/2010'.
    Please help.
    Thanks..
    Edited by: GD on Nov 26, 2011 8:21 PM

    If you want the field to be treated like a DATE in excel, you have to set the column-format to DATE and apply the appropiate Format. To get the needed ole-statements, start the macro-recorder, do the changes in excel and then check whats written in the macro and convert it to OLE.
    If the field should only be shown as a date, you can put a ' in fornt of the date-value.

  • Incorrect date format in excel reports

    Hi,
    Some Activity exported from Activity overview to excel have wrong date format. For example
    Some have 21/04/2008 u2013 Correct
    Some have 13/04/09 u2013 Incorrect
    All the dateu2019s in the database seems to be correct like '2008-04-13 00:00:00.000'.
    Client is using SAP B1 2005 SP01 PL-48. Is there any know issue?
    I tried the same in B1 2007 upgrading the database. All the date seems to be correct when I export it here.
    What may be the reason?
    Any suggestions will be appreciated.
    Regards,
    Mohan

    Hi Gordon,
    It took some time for me to verify in the client machine.
    I have changed the date format in both Business One and in the regional settings to DD/MM/YY. It seems to be ok however the appearances of date column in excel seems to be uneven.
    04/10/09
    04/11/09
           13/04/09
           14/04/09
           19/04/09
    (Ignore the *)
    I think, the problematic dates seem to be exported to excel in the paste special text format.
    Any Idea why this is happening?
    Regards,
    Mohan
    Edited by: Mohanakrishnan T on May 5, 2009 1:09 PM
    Edited by: Mohanakrishnan T on May 5, 2009 1:10 PM
    Edited by: Mohanakrishnan T on May 5, 2009 1:11 PM
    Edited by: Mohanakrishnan T on May 5, 2009 1:11 PM

Maybe you are looking for

  • ALV Report Output Checkbox

    Hi, I'm developing an ALV Report. The output of the report contains a checkbox for each row. There are 2 buttons in the Application bar namely 'Select-ALL' and 'DeSelect-ALL'. The requirement is when I click either of the button it should select or d

  • Photoshop Elements 7 Edit feature

    A friend of mine has purchased Photoshop Elements 7 and is having trouble with it. The first menu opens and gives you the option to organize, edit, create, or share. Everything works except the Edit feature. When I click on the button it starts to lo

  • Ripping Home DVD onto Macbook Pro

    I have about 6 different 15 minute videos on 2 to 3 DVDs that we recorded and I want to put them onto my macbook pro to then be able to use them in iDVD to make copies for some friends. How do I put the DVD onto my computer? I have tried a couple dif

  • IMac G5 (no isight) will not start up.. fsck exited with signal 8

    I have a 4-year old iMac G5 running leopard. WIll I was on internet, the computer froze; I shut it down (forced, as nothing else was possible) and when I tried to start up again, it would not boot. I entered the single use mode (apple+s) and run /sbi

  • Problem with VO Extension

    Hi All, I have a requirement like , I need to change the query of the lov For this ,I extended the VO to incorporate the new query, this query has some bind parameters Now I extended the CO of the Lov to set the bind parameters of the VO query, but t