Viewing 14 posts - 31 through 44 (of 44 total)
Something like this?
Select A.[Product Id],
(
select exp(sum(log(quantity))) from product_table B
where isprimary = 0
and CHARINDEX(Ltrim(Rtrim(A.[Product Id]))+'.',B.[Product Id]) > 0
) as Value
from product_table A
where
A.isPrimary = 1
Union
select A.[Product Id],0
from product_table A
where...
December 20, 2013 at 9:19 am
Look at my attachment. It's a zip with a sql script and a Report Project.
It's not a Virus 🙂
In Report1 you can find something like what you need.
Let me...
December 19, 2013 at 2:45 am
So you have a Table instead a Matrix. It's Right? can you attach a Desgin view of your Report?
December 18, 2013 at 1:11 am
Try this:
=IIF(Weekday(ReportItems!HeaderDate.Value) = 1 Or Weekday(ReportItems!HeaderDate.Value) = 7,"Red","Blue")
and remember to change HeaderDate with the textboxId of the columnGroup
Let me now if it works
December 12, 2013 at 8:54 am
Take a look at the attachment
December 6, 2013 at 10:13 am
Ok, probably i've got a solution:
1) Write this Custom Code and add it to your Report:
Private previousValue As Integer = 0
Public Function GetPreviousValue(ByVal runningValue) As Integer
...
December 6, 2013 at 9:51 am
I remember that you can't use Aggregate function for a group expression. You can use just "RowNumber()" and all Maths expression. You can't use Max or Min, so you need...
December 6, 2013 at 1:31 am
Probably you need a custom PaletteColor.
Take a Look at this link
or
December 6, 2013 at 1:23 am
if you are working with ssrs2008 or greater you can do this:
1) Create a Paceholder for you textbox
2) In Paceholder poperties enable "HTML - Interpret HTML tags as style"
3) In...
November 12, 2013 at 1:59 am
Can you attach a report image in Design mode?
Where do you put your formula? in a Matrix or in a Table?
Which is the sum scope?
I need some more info...
November 12, 2013 at 1:45 am
You can try to write conditinal group expression for matrix Row Groups that depends on the selected value of the Parameters. You need three level Row Group: when one of...
November 8, 2013 at 1:52 am
Are ParameterA and ParameterB Multivalue DropDownList?
In this case the behaviour of DefaultValue is quite complicted.
Let me know and i'll try to explain....
November 8, 2013 at 1:43 am
iif(Not IsNothing((Parameters!pGrade.Value) AndAlso (Parameters!pGrade.Value = "KG" OR Parameters!pGrade.Value = "01"), False, True)
November 7, 2013 at 10:14 am
Viewing 14 posts - 31 through 44 (of 44 total)