How to Avoid Empty Space in Excel Export , while using SubReport.

We have a sceneraio where we have parent child relationship and we are using the SubReport Concept to map the child data by taking input parameter from Parent Report.
The RPL/HTMl viewer , PDF works fine, but  when we export data into excel empty rows are comming.
Could  you please suggest how can we avoid empty space in Excel Export.
we have kept the cell (width and height ) same as SubReport Width and height.

Hi SubhadipRoy,
According to your description, did you use separate subreport to display the data rather than insert subreport in tablix?
Based on my test, if we are use separate subreport to display the data in the report, when we export to Excel we will get an additional row. We can adjust the minimum gap between tablix and subreport to work around the issue. In SSRS 2012, if we paste tablix
and subreport without empty space in report design, it will not display the additional row. You can try to put the tablix and subreport in a rectangle to resolve the issue. 
Reference:
http://stackoverflow.com/questions/20367960/remove-additional-column-from-exporting-to-excel-from-ssrs
There is a screenshot for your reference:
If the issue is persist, please elaborate the issue for further investigation.
Regards,
Alisa Tang
Alisa Tang
TechNet Community Support

Similar Messages

  • How to avoid default selection screen in HR interfaces(using pnp ldbs)

    How to avoid default selection screen in HR interfaces(using pnp ldbs)

    Dear Rakesh,
    The report category is used to change the selection screen of programs that use the 'PNP' logical database.
    See links bellow:
    http://www.sapdevelopment.co.uk/hr/hr_repcat.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/229357553611d3967f00a0c9306433/frameset.htm
    Report categories for selection screen in HR programming
    Also visit the following blog:
    /people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports
    Regards,
    Naveen.

  • Excel export problem using craxddrt

    Hi,
    I'm using craxddrt v.11.5 in our intranet application to export rpt.reports to different formats. My code works well with PDF and text exports, but when it comes to Excel after the .Export(false) method executes the browser window just goes into idle then the session finally expires. I never catch any error. I have tried several export options with no prevail.
    I suspect the Excel export is missing some info to complete and it is trying to prompt me, but no visible prompt gets displayed/answered so it just expires.
    Could anyone help me out. I've spent several days researching and fixing the code and ran out of ideas.
    Sincerely
    Steve Komaromi

    Hi Steve, Is there some reason you are posting this question over and over again?
    Try looking at your same post: Excel export problem using craxddrt
    Also, RDC is legacy product. Look for you answer where you posted the exact same question in the legacy forum.

  • How do I keep the ipad 2 on while using it without having to push buttons to get back to where I was?

    How do I keep the iPad 2 on while using it so it won't go off, making have to push the buttons to get back to where I was?

    Open the Settings app > General > AutoLock - set to Never. You will, howver, want to get in the habit of manually putting it to sleep with the on/off button.

  • How can I do an APP presentation online while using my Iphone?

    how can I do an APP presentation online while using my Iphone?

    You cannot use other countries itunes stores.
    Sorry

  • HT4710 how to restore/import photos from Time machine while using Lion

    how to restore/import photos from Time machine while using Lion

    Launch Time Machine, go to the time you want to restore from and select what you want to restore and click restore - once the photos are restored improt to iPhoto - or restore the entire iPhoto librarhy and use it
    LN

  • HT3986 how to find out serial no. of imac while using windows 7

    how to find out serial no. of imac while using windows 7

    In Windows open up the Command Prompt and type the following:
    c:> wmic bios get serialnumber

  • How to freeze the columns in excel exported from SSRS report??

    We have created a report for our client. The client wants the report in excel format. As there are nearly about 30,000 rows in the excel. Client wants us to freeze the column header names in the excel so that even after scrolling down they
    will be able to see the column names.
    can anybody have idea how to achieve this in SSRS?

    Hi Shard,
    Thanks for your post, You can achive your requiremets by using the below logic. hope this will help you.
    Steps to achieve it
    1. Select the tabix and click on Tablix properties.
    2. In the General tab under Column Headers section you can see "Keep header visible while scrolling" checkbox, check it.
    3. Now the header row will be remain fixed in the report.
    OR
    1.    In the grouping pane, make sure to turn on advanced mode (click on the small black down arrow on the far right of the grouping pane) 
    2.  Select the corresponding (Static) item in the row group hierarchy
    3.  In the properties grid, set RepeatOnNewPage to true
    4. KeepwithGroup to After
    OR
    1)Freeze the header of all columns[ Freezing table header ] : To do select static member of table header row from  row groups [ Advanced Mode ] and set  FixedData to true
    2) Freeze the initial 2 columns : To do select static member of columns in column group and set fixedData to true .
    How do you freeze the tablix header row in an Excel export file in SSRS 2008
    Suhas Kudekar
    Mark as Answer if this resolves your problem or "Vote as Helpful" if you find it helpful.
    My Blog
    Follow @SuhasKudekar

  • How to collapse empty space above each photo in an album?

    Hi folks.
    I have a photo album setup to display my photos as a single column with no caption.
    I'm seeing an alarming amount of 'dead space' above each photo. I.e., when I click on the photo in iWeb in order to see the blue bounding box that contains the photo, there's a lot of empty space.
    Some of my photos are portrait orientation and so the gap is only about 1/3 of the height of the photo. But for some of my landscape-oriented ones, the gap can be as much as twice the height of the photo.
    Is there any way to force iWeb to adjust the container to the height of each image plus some padding?
    Thanks
    Tony

    The only user controlled spacing is that offered by the Photo Grid pane and that doesn't really affect that spacing much. Other options would be to go the flash route with one of the applications or iPhoto plugins available. Examples of some of them can be see in these demo pages:
    PhotoPresenter Animated Slideshow Themes
    SimpleViewer and Flash Album Exporter
    Flash Album Exporter Postcard and AutoViewer Slideshow Themes
    Jalbum
    Cyclosaurus as offerred at times in the past javascript code to modify slideshow attributes but none for the spacing as you want.
    OT

  • How to remove empty space from a file

    Hi all,
    Can any one help on how to remove the blank spaces from a file.
    I used trim function but unable to remove the spaces.
    I have a file in which there is a name like 'JAIRAM' and am storing this file in a variable FILE_CONTENTS.
    Now am unable to compare FILE_CONTENTS with another value as it is storing empty spaces also from the file.
    Please help on this
    Thanks,
    Srini

    Trim only trim at the beginning or at the end. Can you try using the replace sql function.. see below..
    SQL> select replace('abc def',' ','') from dual ;
    REPLAC
    abcdef
    cheers

  • How to catch failed rows from excel export data conversion

    I am pulling data from SQL Server and exporting to Excel file.  Using SSIS 2008, sending to Excel 2003.  The process is working fine, and I want to grab any data conversion failures, specifically I want to grab any data that fails or is to be truncated.
    I add a flat file destination to the data conversion error line (red) and pointed it to a txt file.  This caused an error, saying some of the columns were the wrong data type to go in a text file.  So I added a data conversion to the first data
    conversion error line, but the data types wont change.  
    The wierd thing, is the error says the columns are DT_NTEXT and need to be DT_TEXT, but they aren't, they are DT_WSTR.  Anyway, I tried to convert to DT_TEXT and it caused the data conversions in my original conversion to change, whcih broke the whole
    package.
    My intention is to grab the erroring row so it can be manually converted. So how do I do that without adding 100 more errors?

    Hi teahou,
    do you really use two accounts to post on the MSDN forums?
    I think the data types were not guessed correctly by the Flat File Destination component and thus you need to adjust them using the advanced editor, then naturally the data conversion transformations become obsolete.
    Arthur
    MyBlog
    Twitter

  • How to remove empty space in CSS table and move spry menu bar?

    Hello! I created www.stonecreekha.com about a year ago basically by watching youtube tutorials and haven't done much with it since so I've forgotten everything! In IE7, everything appears as it should; but in Firefox and IE8, the spry menu bar is positioned slightly higher than it should be (it slightly cuts off the foot of the golfer) and there is an empty space between the navigation bar and the photo. The source code can be viewed from the website. Here are some pics:
    IE7 - how it is supposed to look:
    IE8:
    Firefox:
    Dreamweaver:
    So basically, I need to know how to remove that empty space between the navigation bar and the picture, and how to move the spry menu bar down a few pixels, in a way that it looks correct in IE8 and Firefox, and preferably IE7 as well.
    P.S. I'm a noob so if you could be as specific as possible on what to do in Dreamweaver I'd really appreciate it. Thanks

    I belive it's because of the -minus margin being used on the navbar, that you will need to use a negative margin to bring up both the left and right bodyArea divs.
    Try :       margin-top: -18px;  on both divs.  You may need to play around with that to get it more precise.
    Again, not sure what effect that has on IE as I can't test it.
    If it affects IE, then you may need to feed IE a conditional comment for the placement of those divs.

  • How to improve the efficiency of EXCEL export?

    I've found a not too small issue of the built-in EXCEL export function. We have a page which let the users query a huge table and return a report page. The query takes long time, however the users are tolerable enough to stand that since they know the size of the table. Nonetheless, the process to export to EXCEL would take almost the same time (maybe a little bit shorter) as the query, which is in-tolerable. It seems that the built-in function just Re-run the query against the table and sends the file to the excel file. Is there any way to solve this issue?
    Thanks in advance.
    Have a nice weekend!

    That is a good idea.
    You can dump your query output into the collection and base the report region off of that collection. The Excel output just re-runs the region query so if you base the report region on the collection, you are done (you don't need to manually do just the export)

  • How to avoid leading space -char(160) in Apex items

    Hi
    I'm getting a leading space in one of my apex item (text area).
    Further check reveals that it is char(160).
    Could any one help me in this to avoid leading space in the item.
    Many Thanks
    --Vijay                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Vijay,
    Try:
    TRIM(:<Item_Name>)In the Post Calculation Computation section of the item.
    Hope this helps.
    Regards
    Kamo

  • How will i empty my trash that is "in use"?

    When I try to empty my trash it says "this operation could not be completed because the item ...... is in use". How will i empty my trash?

    Quit the application associated with the item in the trash before you empty the trash.
    If that doesn't help, hold down the Option key and empty the trash at the same time.

Maybe you are looking for