Viewing 12 posts - 1 through 12 (of 12 total)
=Split(Fields!PRE_LAB_VAL.Value,"=",-1,CompareMethod.Text)(1)
March 9, 2016 at 6:02 am
=Mid(Fields!PRE_LAB_VAL.Value, InStr(Fields!PRE_LAB_VAL.Value, "=") + 1, InStrRev(Fields!PRE_LAB_VAL.Value, "=") - InStr(Fields!PRE_LAB_VAL.Value, "=") - 1)
March 9, 2016 at 2:58 am
The location of a reportitem can't be changed during runtime. But if your header is a part of the tablix you can place your tablix at 0,0 and hide the...
November 14, 2013 at 11:41 pm
Try putting all calculations in rows outside of your row groups, "Insert Row" --> "Outside Group - Below". Works fine for me. Check out attached rdl.
June 11, 2013 at 5:21 am
I would use CountRows("The name of your row group") to get the total.
May 17, 2013 at 6:38 am
The problem is that the aggregate is bound to the dataset "uspGetReportSettings". Everything inside that aggregate (between the two parenthesis) is calculated with that scope and the field "Response" doesn't...
May 17, 2013 at 3:42 am
Do you get any error-messages? Is the textbox stand-alone or part of a tablix?
May 17, 2013 at 1:19 am
It looks like the user needs to be assigned to the System Administrator role, see http://msdn.microsoft.com/en-us/library/ms159797.aspx.
May 17, 2013 at 12:58 am
Check out the ReportViewer Controls at http://msdn.microsoft.com/en-us/library/ms251671.aspx.
May 17, 2013 at 12:48 am
Try this (from http://blog.hoegaerden.be/2009/09/14/adding-an-else-to-your-switch/):
=Switch(
Fields!CategoryCode.Value = "DEPOSIT" And Fields!WithdrawalType.Value = "S" , "Deposit Amount",
Fields!CategoryCode.Value = "LOAN", "Loan Amount",
Fields!CategoryCode.Value <> "LOAN"...
February 11, 2013 at 12:21 am
Viewing 12 posts - 1 through 12 (of 12 total)