Funky Formatting Of Percentages In Excel Export
Sep 18, 2007
I've created a report that has cells in it that I want to be formatted as percentages. I set the format code in the cell properties to "P1" and everything appears to work fine until I export to Excel. Some cells show up with only one digit after the decimal and some show up with two digits after the decimal.
I looked at the formatting in Excel (right click, Format Cells...) and it is set to "[$-1010409]#,##0.0#%". I don't have the first clue what that is "supposed" to do but what it does is this:
If I enter 100.00 in the cell it shows up as 100.0%. Expected
If I enter 100.10 in the cell it shows up as 100.1%. Expected
If I enter 100.15 in the cell it is displayed as 100.15%. Not expected
I have formatted the report to only show one digit after the decimal, but RS exports to Excel with some funky formatting that sometimes shows one digit and sometimes two digits after the decimal. Why wouldn't it simply format the cell as a percent? How can I get it to only show a single digit after the decimal?
This is Excel 2007 but Excel 2003 has the same behavior.
Thanks
--John
View 5 Replies
ADVERTISEMENT
Apr 10, 2007
Hi
In the Exported Excel File the Format of a Field whose value is always 0 should be 0.00. I used the following code in Sql select Stmt:-
Select convert(numeric(26,2), Convert(Varchar(5),0.00)) as [Column Name]. But still in the Excel sheet Value of this column appears as 0. Can any one suggest as to how do i go abt it??
Thanx in advance.
View 1 Replies
View Related
Mar 4, 2008
I need to populate three worksheets within the same workbook with data from SQL 2005. However, I am not sure how to handle the custom formatting. Even if I use a template, my data does not start at Row 2 for any of the worksheets.
Under SQL 2000 DTS, I used to work directly in an ActiveX script task to instantiate an Excel workbook and loop through the data, placing it in the correct cells, handle formatting, etc. I cannot seem to find any way to do this in SQL 2005 but perhaps I am missing an easier option?
Does anybody have a solution?
Kind regards,
Steve
View 3 Replies
View Related
Aug 17, 2006
Hi all,
Once again, SSIS is giving me a 'F.U.N.' time (ask for definition of the F.U.N. acronym another time ).
I
have a relatively simple task - create an excel spreadsheet with 3
columns of data - Id, Description and Sales. ID and Description are
text, sales is int.
So my SP aggregates and creates my resultset
in my OLE DB Source in the Data Flow. It proceeds to the Excel
destination, and that all seems fine. My issue is that the data is
being written as text. Looking at the excel destination in Advanced
editor:
the Excel Destination Input, Input columns are formatted as
I expected: DT_WSTR 8 for the ID, DT_WSTR 100 for the Description and
DT_I4 for the Sales.
Excel Destination Input, External columns refuse to fall in line, though. They are all listed as DT_WSTR 255.
The
target excel spreadsheet is being created from a template file. That
template file has header columns. The target column for the Sales has
the entire column formatted to NUMBER (0 decimals). Yet to now avail.
When
I check the spreadsheet, the column has retained the cell formatting,
and I have a 'I' pop-up to inform me that 'someone' has inserted text
data into the number column (even though the data IS number).
Since
the SP spits out INT, it isn't a case of receiving a text value, imho.
While trying to change the external column data type in the advanced
editor, SSIS is quite happy to let me change the value for the Sales
output to DT_I4, apply, and ok. Then, when I open it immedaitely
aftgerwards, it has reverted to the DT_WSTR's! AArrgh. If is can't
handle it, at least tell me when I try and change it. don't let me
change it, and then revert back without telling me! Grumble grumble...
So - anyone know a way around this?
View 6 Replies
View Related
Jul 4, 2007
Hi,
when i try to export reports to excel number fileds has exported as text !!
I use SQL server with database in US codepage, Reporting Services in english version but excel with Italian codepage settings.
So i must convert the defaul decimal separator from "." to "," within the report generation. This cause that i can't use te cdbl() conversion directly in the report field.
Anyone have sugestion ??
P.S. I can't change the database and excel codepage settings
View 2 Replies
View Related
Aug 28, 2015
Declare@QRYvarchar(8000)
Select@QRY='bcp "Select COL1, COl2 From table(nolock)" queryout "D: est.xls" -c -T -S ' + convert(varchar(20), serverproperty('servername'))
Select@QRY
Execmaster..xp_cmdshell@qry
The file test.xls is getting generated but when opening getting the message
"File you are trying to open is in a different format than specified by the file extension"
Is there any property that can be set to avoid this message?
View 6 Replies
View Related
Jan 27, 2008
Hi,
I have got a report which has a table and a list. I used list, as I wanted to use a subreport and be able to export it to excel. The subreprot takes two parameters from the main report.
When I run the report, it looks ok, but when I export it to excel, the formatting is all messed up, the subreport in the list appears after all the rows of the table.
I have aligned the list very close to the last column of the table.
Looks like this in designer. (List is very close to the last column.
Can some one help me if there is any better way of doing this.
Thank you,
Chai.
Table Col1
ow1
List
Sub report
View 5 Replies
View Related
Feb 5, 2007
Anyone know why cells within a matrix that are formatted as numeric export to Excel with a cell format proprty of "General"? Cells within a table however export with an appropriate format.
Thanks
View 1 Replies
View Related
Jul 6, 2007
Hi
I've simplified this so I can test it's not me and so it's easier to explain.
I have one table in SQL server called Table1. Five fields called: One, Two, Three, Four, Five. Values of NULL, 2, 3, 4, NULL.
Reporting services, put a table in a report. Two fields. Header of Field1 and Field2.
Value field data for Field1 ="One: " & vbcrlf & "Two: " & vbcrlf & "Three: " & vbcrlf & "Four: " & vbcrlf & "Five: "
Value field data for Field2 =Fields!One.Value & vbcrlf & Fields!Two.Value & vbcrlf & Fields!Three.Value & vbcrlf & Fields!Four.Value & vbcrlf & Fields!Five.Value
Preview the report, all is well, you get this:
Field1 Field2
One:
Two: 2
Three: 3
Four: 4
Five:
Export it to a PDF, all is not well, I get this:
Field1 Field2
One: 2
Two: 3
Three: 4
Four:
Five:
I can make it work by checking the NULL fields and replacing them with a character. But why does it ignore the vbCRLF when exported to a PDF?
Any ideas...
View 4 Replies
View Related
Oct 22, 2015
I need to export some Database data into a text file. My Query looks like this:
SELECT Category1, Category2, Category3
FROM dbo.tbl1
WHERE Category1 = 'JP-4'
AND Category2> 4;
This works fine to get the data, however there is some html formatting in the table entries such as
`<p>,</p>,
,</br>` etc.
So ideally I need to remove those when exporting the data to the text file. I've tried to do it with a simple replace query but that didn't work. I've also got an issue with line splits and would need to remove the ( ).
The Data format is something like this:
Category1: JP-4
Category2: 4
Category3:<p>Neque porro quisquam est qui dolorem ipsum quia dolor</p> <p>amet, consectetur, adipisci velit</p>
Category4:<p>Neque porro quisquam est qui dolorem ipsum quia dolor</p>
I got it to work like this with the replace function:
SELECT REPLACE(REPLACE("PHOTOGRAPHS",'<p>',''),'</p>','')
FROM dbo.khia_tbl
WHERE Category1= 'JP-4'
AND Category2> 4;
But the issue is that I've got 15 columns in total and that I need to do it for several different tags for each column so
,
</br>,
as well as "" and different spaces so that would be a lot and I thought there must be a better/more efficient way of doing it...
View 1 Replies
View Related
Dec 5, 2007
When I open the spreadsheet in Excel 2000, it works fine. When I try to print, it crashes Excel. In testing, I narrowed it down to the Header/Footer, because it also crashes when I go to Page Setup and click on the header/footer tab.
However, I can print the same spreasheet from Excel 2007.
Am I just dealing with a "you need to upgrade all your clients" situation, or is there a known issue with certian formatting that is passed out with reports that is not supported by older versions of Excel?
I am using Reporting Services 2005 SP2 to serve up the report that is exported to Excel.
Any assistance is appreciated.
View 3 Replies
View Related
Jul 23, 2005
I've got a new server with Pentium4 xeon processors. I've used sp_who2for quite a while on my old server -- to look at CPU and IO usage. Onthe new server, the CPU times are huge -- although actual performanceis quite good. I know sp_who2 is an undocumented proc. Has anyoneexperienced this or is it just me?
View 1 Replies
View Related
Jul 30, 2007
I am currently developing a report for users who insist on exporting to Excel 2007. When I export to Excel on my PC, the report formatting is fine (I am using Excel 2003), however, font sizing as applied in the report is lost when exported to Excel 2007 (i.e. font size 9 in the report is actually 10 in excel 2007). In Excel 2007, the data which runs onto two lines does not show up correctly - the second line is squashed below the first.
Any ideas on how I could resolve this?
View 1 Replies
View Related
Feb 5, 2004
Hi ,
I am executing my query and writing it to an excel sheet by choosing "query" results to an excel sheet. It does not format them well. I have trimmed my fields too. There are about 10 fields in the database and I need to show them in the excel file all the ten fields adjacent to one another. Is there anyway I can format them other than the programming aspect.
Thanks
View 1 Replies
View Related
Mar 31, 2008
Ok. I've been messing around with exporting data to excel using an Excel Destination. I keep having formatting problems specifically with dates, numbers and text (if the text looks like a number). I am exporting to a range.
1) If set the FirstRowHasColumnNames to true, format the appropriate cells in the header, and the range is set to the row of column headers only, the formatting does not apply.
2) If set the FirstRowHasColumnNames to true,include a blank row after the header, format the appropriate cells in the that row and set the range to both rows, the formatting does apply but I get a blank row after the header line.
3) If set the FirstRowHasColumnNames to false, format the appropriate cells in the first row, and set the range to that row, the formatting does not apply.
I cannot use VBA or install excel on the server and manipulate it via VBA.
Is there any way to delete the row via a query using OLEDB? I seem to have read you can blank out a line but not delete a row using this method.
Is there any way to format the columns in SSIS?
View 4 Replies
View Related
Nov 22, 2005
Hi All
I've been googling this for a while now and can't seem to find any elegant answers.
I'm looking for an automated way to present a FORMATED Excel Spreadsheet to the Customer from a stored procedure output.
Can anyone advise me the best method of doing this - should I / can I assign an Excel Template to the DTS Task output ?
His mind is set on Excel and the formatting is basic and easy to write in a Macro which I've done, but this requires human interaction to finish the task (Automated Run Once on opening etc).
In an ideal world an individual would send an email to the Server with two formated parameters (@FromDate & @ToDate) and would be emailed back a ready formatted S/Sheet. But I believe he would be willing to just select the relevant SpreadSheet for the Daily / Weekly / Monthly periods dumped.
Thanks
GW
View 2 Replies
View Related
Jul 1, 2015
How can i Format Column Name(Different Color) in Excel Sheet that was Created using Bcp Command in SQL SERVER 2008R2?
View 4 Replies
View Related
Apr 14, 2008
Hi All
I have seen several posts on this issue but as yet no answer. So i'm hoping that somewhere out there knows what the issue is.
SSIS package queries database creates MS spreadsheets per customer and then emails each customer their list.
Anyway all works fine apart from the fact that the Excel Destination Editor converts the date from uk to us format. My routine is already using an MS Excel template (correctly formatted) which it copies as part of the package.
Any ideas anyone?
rgds
View 2 Replies
View Related
Feb 28, 2007
I've built a fairly straight forward report in RS that looks normal in preview mode and in PDF format with out any issues.But when I export it to Excel report header is not appearing in each page.Any ideas as to why this is occurring?thanks in advance,Ramesh KS
View 1 Replies
View Related
Feb 1, 2008
Hello All, I'm simply exporting data from SQL to Excel via the Export Data feature in SQL Management Studio.My problem is I have a column aliased as [ID #] and when it exports it changes the Pound Sign into a decimal -> ID .SPACE(25) As [ID#], It's not a major problem but does anyone have any suggestions? Thanks, Kyle
View 3 Replies
View Related
Nov 16, 2005
Hi there I know its possible to export data from a gridview to excel. I'm looking to export data directly from a stored procedure at the click of a button.Somebody suggested using the following:insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=C: esting.xls;', 'SELECT * FROM [SheetName$]') select * from table-nameWhen I tried executing the above lines of codes I got the following error message:"Ad hoc access to OLE DB provider 'Microsoft.Jet.OLEDB.4.0' has been denied. You must access this provider through a linked server." If anyone has any idea whats wrong ... plssssssssssssssssssss ... let me know .... Thanks in advance.
View 4 Replies
View Related
Nov 27, 2001
I have a job which produces a daily report and exports it to excel. However, instead of overwriting the contents of the file the data is being appended to the file. Any suggestions welcome.
Thanks in advance
Vince.
View 5 Replies
View Related
Jan 31, 2006
I'm trying to export to excel using dts, but using a stored procedure where i have a query using temporary tables (#D,#T,#R) and the result is a table with a variable number of columns (sometimes 3 columns and sometimes 10 columns)
what is the best way to do this? DTS, BCP
thanks
FOCEL
View 1 Replies
View Related
Mar 28, 2006
I want to run Stored procedure that is returning recordsets and is using cursors/ temporary tables (MS Sql 2000 Server).
The output of this SP is to be used to prepare an excel Report.
In the Transform Data Task Properties:
EXEC sp_ProductivityReport_ByDay '01/01/2005','02/01/2005'
It shows me the data in the Preview, but asks me to define transformations. Further on the transformations, it does not shows up the source columns (although they were populated in the preview)
When I perform the same task using DTS Export utility, i get the following error:
Error source: MS ole db provider for sql server
Error Desc : Null Accessors are not supported by this provider
context: error calling CreateAccessor. Your provider does not support all the interface/methods required by DTS
Please Help
Thanks
View 3 Replies
View Related
Feb 18, 2007
Hello All
First time setting up A SSIS
Trying to import a excel that creates a new table called lockbox.
Does not import any records from Columns-Contract Id, Owner ID,
that have a null value.
Then in the Site Id -that is a number value- change to a text value
and update it to it text value.
for example: Site Id Column
2 = Ell
3 = CSI
12 = Ell2
Can someone get me started in the right direction?
Thanks for your time and help
JK
View 1 Replies
View Related
Mar 13, 2008
I have written a query which dumps the output to a table, ideally I would like to select everything from this table in to an Excel file.
Looking @ http://blog.sqlauthority.com/2008/01/08/sql-server-2005-export-data-from-sql-server-2005-to-microsoft-excel-datasheet/
Made me think this would be quite easy... so
1. I created a spreadsheet named test.xls with the column headings from my temp table
2. Saved and closed this xls
3. Tried to run the following:
USE [PEI];
GO
INSERT INTO OPENROWSET ('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=C:DELL est.xls;',
'SELECT * FROM [Sheet1$]')
SELECT *
FROM tblCFPooled
GO
Where C:DELL est.xls is where I saved test.xls, tblCFPooled is the table I have populated in the firstplace and PEI is the database name.
When I run this the following error crops up:
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "The Microsoft Jet database engine could not find the object 'Sheet1$'. Make sure the object exists and that you spell its name and the path name correctly.".
Msg 7350, Level 16, State 2, Line 1
Cannot get the column information from OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)".
I then found something on a different site:
http://www.mssqltips.com/tip.asp?tip=1202
So based on this I tried:
insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:DELL est.xls;',
'SELECT * FROM [T$]') select * from tblCFPooled
And obtained the following error:
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "The Microsoft Jet database engine could not find the object 'T$'. Make sure the object exists and that you spell its name and the path name correctly.".
Msg 7350, Level 16, State 2, Line 1
Cannot get the column information from OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)".
(I renamed the sheet1 to T if you are wondering where T$ comes in!)
Before running either of these 'export' queries I did as instructed in the first link:
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'Ad Hoc Distributed Queries', 1;
GO
RECONFIGURE;
GO
Which produced results:
Configuration option 'show advanced options' changed from 0 to 1. Run the RECONFIGURE statement to install.
Configuration option 'Ad Hoc Distributed Queries' changed from 0 to 1. Run the RECONFIGURE statement to install.
I assumed from that I had successfully enabled Ad Hoc Distributed Queries - Is that correct?
Both methods seem to throw up a similar error, an error which makes me think its some kind of SQL authentication issue.
Has anyone successfully exported from SQL to Excel - if so, any tips?!
(For the record I am using Management Studio, we are running SQL Server 2005, I am doing all this on a Vista Business machine, the SQL server is on a local server on our network here. )
View 1 Replies
View Related
Jul 11, 2007
Hi All,
While exporting my reports to Excel , I want them to be exported to a single excel book in multiple sheet.
i.e. single report in single sheet and all in a single excel workbook.
Does anyone have any idea how to do that?
Regards
Saurabh
View 2 Replies
View Related
Feb 27, 2007
Hi,
I have a report when I run that report if the result is span for multiple page the table header is displaying for each page.When exported to PDf it is displaying the table header for each page.but when we export to Excel the table headers are not displaying.Any work around for this.
Thanks
View 1 Replies
View Related
Sep 27, 2007
Hi ,
I have a simple report which i want to export to excel format. the are no groups in the report. I need each page of the report to appear as a seperate page in excel. currently when i export the report i get a single continuous page. is there any way in which i can do this ????
View 3 Replies
View Related
Jul 31, 2007
I have some reports that I used vbcrlf in. Whenever they are exported to Excel only the first line appears.
Ex: Name (&vbcrlf)
Address 1 (& vbcrlf)
Address 2 (& vbcrlf)
City, State, Zip
This exports to Excel and displays the name line only.
However, if I close the file that was exported and the extra blank screen, and hit export to excel again for a second time, all of the information is displayed.
View 1 Replies
View Related
Mar 17, 2008
Have you tried exporting your report with subreports to Excel? How does it work?
Thanks!
View 5 Replies
View Related
Nov 2, 2007
I am having a problem exporting data to excel using t-sql. I need to create a t-sql stored procedure that exports the resultset of a dynamic query to Excel where the columns are not know beforehand.
I have been able to do it using bcp, but the problem is that the bcp method just exports the data to an tab-delimited ascii file with a .xls extension. Excel is smart enough to pick it up and parse it out into the individual cells, but the problem arises if the field value contains any special chars that may have been picked up when the user input the data by using copy & paste. Then the columns/rows are skewed for the record that has the field with the special chars in its field value.
I have tried using the openrowset method and if you know the fields(cols) that you want to retrieve, it works great. All you have to do is pre-create an excel file with the first row containing the columnNames for each column. But for dynamic queries, this is not an option. I have read somewhere that you can do a range, but have not been able to figure out to do that yet. You would have to pre-determine the number of columns & rows and figure out the range. Columns A-Z may not be as big an issue, but then I would have to figure out the values for any columns if the column count exceeded 26.
Outside of using Ole-Automation, is there any way than I can achieve the results that I really need? It just seems like over-kill for something that should be a simple task. If it cannot be done outside of Ole-Automation, is there a good example that someone can point me to?
Thanks in advance for any help!
glh8564
View 11 Replies
View Related
Jan 18, 2008
Hi all,
I have a SSRS Report which I have built using only a table. There are many table header rows, detail rows and table footers rows. For the layout of the report, I have merged many Table columns as well.
So when I am exporting this report to excel, it renders the report as it is but I am not able to manipulate any data in the excel till I do a lot of cleaning up. I have to remove the table headers, footers and also unmerge the merged columns etc.
My users are asking that they need a way throught which when they export the data it presents them with just the data which can be easily sorted, added, manipulated.
Is there a way of doing this. I thought about two ways of doing it.
Make another report in which only the data is shown and thus when this data is exported, then only the data gets exported to excel. But this is a very tedious way. Because as the number of reports increases, thi sis going to be a tough task to follow.
Make a web service or a plug in which will be connected to my web form. Then when the Export to Excel is clicked, this plug in will clean up the SSRS Report and export to excel in a way that only the data is exported.
But I dont know much about web services or plug ins.
Could you please guide me that if it is achieveble. And what are the various ways in which this task can be done.
I really need this urgently. Any help or suggestion is welcome.
Thanks
Swati
View 3 Replies
View Related