reportbuilder

SQL Server Report Builder Number Formatting

a 夏天 提交于 2019-12-11 12:33:28
问题 I am creating Reports in SQL Server Report builder. When I set format of any number fields, in design it is displaying sample value. For e.g. If I set format 0.00 to one numeric field, it started to display 12345.00 I have 10-12 fields in design, it caused very much confusion. Is there any solution to change this? When I open report in Visual Studio, it doesn't display like that. Check Following screenshots: In Report Builder: In Visual Studio: 回答1: Finally, I got solution: There is option in

Printing on citrix server

北战南征 提交于 2019-12-11 04:26:02
问题 We are using Delphi 7 to develop database apps with advantage as a backend. Our system is usually installed on the windows server with the pcs acting as terminals. All the settings and database are on the server. we are having problems running our software on Citrix servers. In particular printing seems to be an issue. Both in selecting the right printer and in the formatting of the report. We use Rbuilder version 10 to produce our reports and they are sent to a zebra label printer so not a

LookupSet based on two fields combined instead of one

谁说胖子不能爱 提交于 2019-12-10 21:35:12
问题 I have two datasets: Dataset1 (primary) and Dataset2. My report dataset is Dataset1. I want to access Gross premium Amount from Dataset2 and put it in the report. The report is working just fine if the parameter for "market name" is a single value parameter . When I set the parameter properties to "Allow Multiple Values", my report is displaying wrong Totals for "Production" Field. The problem is because the lookupset function is based on Currency_Type. What I should do is search for each

Report Builder: Can I link to a specific part of a report?

自作多情 提交于 2019-12-10 16:37:49
问题 I would like to link to a specific section of a report from another report. A quick search on the internet didn't give me any suggestions, so I thought I would ask you smart folks here ;-). I'm really looking for something like anchors in HTML but for a report. 回答1: If you know already the page of the report you want to jump, then instead of the action "Go to report" I think you should use "Go to URL" and in the expression field insert something like: "http://myrsserver/reportserver?http:/

Fastest way to locate record in TQuery resultset

好久不见. 提交于 2019-12-10 14:06:27
问题 I am wondering what the best (read: fastest) way is to locate a record in a resultset of a Tquery SQL statement. Until now i'm using TQuery.Locate and if i'm right that is the only statement that can be used to search in the resultset. So how can we optimize this? I have a few ideas, but haven't had the time yet to compare them all on large datasets: Let say we have a table with the following fields: Create Table aTable ( ID int, Name1 varchar(50), Name2 varchar(50)); And the following query:

help convert this SOAP request to Report Builder 2.0 query for XML data source

倖福魔咒の 提交于 2019-12-08 07:39:33
问题 I have a complex parameter to a web method in my .NET web service, and I want to query that web method with Report Builder 2.0 using SOAP. With soapUI, I get the following SOAP request for that web method: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:qcr="MyNamespace"> <soapenv:Header/> <soapenv:Body> <qcr:MyWebMethod> <qcr:MyComplexParameter><!--Represents a serializable class--> <qcr:Action>?</qcr:Action><!--string--> <qcr:ActionSortAscending>?</qcr

help convert this SOAP request to Report Builder 2.0 query for XML data source

假装没事ソ 提交于 2019-12-07 03:07:38
I have a complex parameter to a web method in my .NET web service, and I want to query that web method with Report Builder 2.0 using SOAP . With soapUI , I get the following SOAP request for that web method: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:qcr="MyNamespace"> <soapenv:Header/> <soapenv:Body> <qcr:MyWebMethod> <qcr:MyComplexParameter><!--Represents a serializable class--> <qcr:Action>?</qcr:Action><!--string--> <qcr:ActionSortAscending>?</qcr:ActionSortAscending><!--Boolean--> <qcr:ActionSortOrder>?</qcr:ActionSortOrder><!--int--> </qcr

How to keep a specific row as the first result of a query (T-SQL)?

拈花ヽ惹草 提交于 2019-12-05 16:52:05
问题 I'm writing a SQL query to get a list of parameters for a report in Report Builder 3.0. I needed to add an extra row with the value 'All' to the results like this: SELECT 'All' UNION SELECT DISTINCT Manager FROM IS_Projects This works fine, but the query returns the rows to me sorted in alphabetical order, where I actually want 'All' to appear at the top at all times (ie. come back as the first row). The rest of the results can be sorted alphabetically. I've seen suggestions on adding a sort

How can I get SSRS and Chrome to work together?

做~自己de王妃 提交于 2019-12-04 04:36:14
Chrome is my preferred browser; I need to interact with SQL Server Reporting Services, though, and when I navigate to a report created with Report Builder (*.rdl file), in Chrome I get no contextual menu. When hovering over the report, it does "light up" (a yellow border is drawn around it) and a dropdown arrow appears in the NE corner, but clicking it does nothing whatsoever. In IE, it works just fine. However, I really don't want to use IE if I don't have to. Sharepoint has similar issues (things that can't be done in Chrome and Firefox work fine in IE). Do I just have to "bite the bullet"

How to keep a specific row as the first result of a query (T-SQL)?

可紊 提交于 2019-12-04 02:24:46
I'm writing a SQL query to get a list of parameters for a report in Report Builder 3.0. I needed to add an extra row with the value 'All' to the results like this: SELECT 'All' UNION SELECT DISTINCT Manager FROM IS_Projects This works fine, but the query returns the rows to me sorted in alphabetical order, where I actually want 'All' to appear at the top at all times (ie. come back as the first row). The rest of the results can be sorted alphabetically. I've seen suggestions on adding a sort-order column to the table, but I'm pretty new to SQL, and don't know how to do this. Thanks for any