ssrs-2012

SSRS Alternating row color issues when some rows are not visible

徘徊边缘 提交于 2019-12-12 00:29:46
问题 I have a report where I have a customerID group, and no detail group. The dataset that I have going to the report will have each customer, as well as numerous columns of information for that customer. I have created a bunch of rows, that are labeled appropriately, and displays valid data associated with it (ex. Age: 34, Sex: Male). I also have some rows where the data coming back may be blank or NULL. These rows I choose to hide the visibility for. I am unsure how to handle the alternating

SSRS report export to excel functionality gives faulty report

久未见 提交于 2019-12-11 17:24:48
问题 In the SSRS my report is displayed fine I have the following scenario: I am passing a parameter ShowDecimal . If the value of the ShowDecimal is Y then decimals should be displayed in the report. Catch is, if the value is like 1 it should display it as 1 , if the value is like 1.10 then the value should be displayed as 1.10. If the ShowDecimal is N then do not show the decimals. I have added condition in the format like: =IIF(Parameters!ShowDecimal.Value="Y", "#,##0.##", "#,##0") In the

How to account for double entries in a card swipe table?

六眼飞鱼酱① 提交于 2019-12-11 17:16:17
问题 How do I account for accidental swipes in a card swipe table? I tried selecting the max(time_cst) by grouping them on entry. It did not solve the problem. http://www.sqlfiddle.com/#!18/06cc8/2 EmpID Enter/Exit Time 2999 Entry 06:00AM 2999 Entry 06:01AM 2999 Exit 12:00PM 2999 Entry 01:00PM 2999 Exit 03:00PM 2999 Entry 04:00PM 2999 Exit 06:00PM This is how I want it to show up. http://www.sqlfiddle.com/#!18/5cfbb/2 EmpID EntryTime ExitTime 2999 06:01AM 12:00PM 2999 01:00PM 03:00PM 2999 04:00PM

Naming worksheets once an SSRS report is exported into Excel

自古美人都是妖i 提交于 2019-12-11 17:07:28
问题 I have a single report which includes several tablixes. Once the report is run, it is exported into Excel by the team using it. For each tablix I clicked into its properties and ticked Add a page break after doing this ensures that when the report is exported to Excel each tablix's data appears on a separate worksheet. However when the export takes place the worksheets are named 'sheet 1', 'sheet 2' etc Ideally I'd like the separate worksheets in Excel to reflect the name of the tablix, e.g.

SSRS Cell Colour Dependent on Another Cell Value

吃可爱长大的小学妹 提交于 2019-12-11 15:42:33
问题 I'm trying change a cell background colour depending on another cell value, or if the cell value has zero I want a dash like this "-". This is the formula I'm using, and currently the cell I want to have the dash in when the other cell is at Zero is showing 0.00 =IIF(Fields!RateAmount.Value = 0,"-",(switch(Fields!PercentageDifference.Value <= -10, "Red", Fields!PercentageDifference.Value >= 10, "Red", True, "Green"))) When searching on here all I can find is an answer for googlesheets, if you

Error when trying to view SSRS Subscriptions in Report manager Url

懵懂的女人 提交于 2019-12-11 14:21:24
问题 Our report server database was moved to a new environment. Subscriptions work well with most users/owners. However, we have issues with one not working. changes were made with the query below: DECLARE @OldUserID uniqueidentifier DECLARE @NewUserID uniqueidentifier SELECT @OldUserID = UserID FROM dbo.Users WHERE UserName = 'DOMAINA\OldUser' SELECT @NewUserID = UserID FROM dbo.Users WHERE UserName = 'DOMAINA\NewUser' UPDATE dbo.Subscriptions SET OwnerID = @NewUserID WHERE OwnerID = @OldUserID

How to connect Visual Studio to a specific dynamics ax environment

天涯浪子 提交于 2019-12-11 13:01:53
问题 I would like to connect my Visual Studio against different dynamics ax environments. In particular the following two: Development Environment Production Environment The purpose is to develope SSRS reports. In the production environments there are some reports which are not available in development and it would be complicated to create them. Not meaning that I'm going to develop against production (who would do such a thing?! ;-) ). I found a tutorial which shows how to connect to a specific

How to know if a report is already printed in SSRS?

≡放荡痞女 提交于 2019-12-11 12:33:32
问题 The user of my report would like to know if the report has already been printed? If the report has already been printed then the user would like to see a message that the report has already been printed previously on the report next time the report is generated. what is the best way to achieve this? Thanks in advance. 回答1: There is no official documentation on how to achieve this, but I there could be a way of doing this. The ExecutionLogStorage table contains information about reports

AX SSRS Report Parameter is shown but not useable in the report

 ̄綄美尐妖づ 提交于 2019-12-11 11:55:54
问题 I want to add a parameter to a SSRS report which uses a report data provider. I searched the LedgerTrialBalanceContract class in AOT and added in the classDeclaration an attribute "CurrencyCode accountingCurrency;". After this step, i added a method "parmAccountCurrency" which look like this: [ DataMemberAttribute(identifierStr(accountingCurrency)) ] public CurrencyCode parmAccountCurrency(CurrencyCode _accountingCurrency = accountingCurrency) { //accountingCurrency = _accountingCurrency;

SSRS - Matrix Table Reading Previous Row Values

北城余情 提交于 2019-12-11 08:54:27
问题 I've been trying to read the previous row value(that displays hourly quantities) on the matrix table to compare it with current row value and highlight the background color to yellow if the difference between them is out of accepted tolerance range. The matrix table has a combination of grouping on column and row(for only hourly information) that is shown on the picture. Tried to use the custom code to achieve this, but I'm getting an incorrect result . I've attached the report design image,