Tag Info

New answers tagged

0

In the textbox properties go to the Fill tab. For fill color enter an expression like this: =iif(Fields!GroupID.Value=previous(Fields!GroupID.Value) and Fields!Spouse.Value<>previous(Fields!Spouse.Value) ,Parameters!Color.Value,Nothing) Change "GroupID" to be your Order# and change the "Color.Value" to the highlight color you want. Note: This will ...


0

Ah, I see pagebreaks are ignored on column_groups. Well I guess I'll try one of these workarounds. http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/ea9d795b-8d17-41d2-a1d7-a4069ebb4539


3

You need to set the scope in the RunningValue function to one outside the current group, for example the table's DataSet itself. So something like: RunningValue(Fieldname,SUM,"DataSet") Here's a simple example based on the following data: I've created a simple report grouped by grpMonthYear: The Month Total is just the sum in the current group ...


0

You'd just need to add the aggregate expression to the matrix detail field without a specified scope, e.g. something like: =Count(Fields!Value.Value) Since you don't supply a scope, the aggregate will be calculated in its current scope, which for those value fields will be the particular group/period combination. Edit after comment/update Hmm... I'm ...


0

First you would add 4 available values to your parameter with a label of "100%" etc. and values of 1,2,3,4. Then you have 2 options to filter. You can add something like this to your query: SELECT case when EMP_Attendance = 100 then 1 when EMP_Attendance <100 and EMP_Attendance >=90.00% then 2 when EMP_Attendance <90 and EMP_Attendance ...


1

This is not natively possible but there is a slight work around. Create a visible parameter with your four options above. Create two internal parameters that are populated by two dummy sqls, one lower and one upper. Make the queries produce the appropriate upper and lower limits based on the users selection, e.g. If 100% is selected lower = 100 and upper = ...


0

What you're trying to do isn't available in Reporting Services. Unfortunately, the Export feature doesn't fire any sort of event for your code to run. However the report looks when you choose to export it is how it will be rendered in Excel. One solution would be to include a button to Expand All with instructions to press that before exporting.


0

Since that value is copied, the aggregate you would use is First().


1

You can use ranking functions to eliminate rows: with NoDuplicates as ( select * , rownum = row_number() over (partition by MatchedID order by NewID) from Accounts ) select NewID , MatchedID , Name , AddDate , Address , phoneNumber from NoDuplicates where rownum = 1 SQL Fiddle with demo. Although there's no reason you can't just use ...



Top 50 recent answers are included