How to Export the Report data into More than one tab in Excel

  • Using Following Query i have generated Tabular Report

    SELECT Person.Contact.ContactID, Person.Contact.FirstName, Person.Contact.MiddleName, Person.Contact.LastName, Sales.SalesOrderHeader.TotalDue

    FROM Person.Contact INNER JOIN Sales.SalesOrderHeader ON Person.Contact.ContactID = Sales.SalesOrderHeader.ContactID

    ORDER BY Person.Contact.ContactID

    Now I want to export Report Data in such i manner to excel

    Conditions

    ContactID>1000 and ContactID<2000 In To First Tab in Excel

    ContactID>2000 and ContactID<3000 In To Second Tab in Excel

    ContactID>3000 Third Tab in Excel

    Please let me know how we can achive it in SSRS

  • See if this works for your situation: http://weblogs.sqlteam.com/joew/archive/2008/11/12/60755.aspx

    HTH,

    Rob

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply