Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Villanuev
Constraint Violating Yak Guru
478 Posts |
Posted - 2011-11-29 : 02:17:05
|
Guys,I have a Qty field with a negative value.My objective is to remove the negative value in SSRS expression.how to do this in expression. ThanksQty----200Result:Qty---200Regards,JOV |
|
Villanuev
Constraint Violating Yak Guru
478 Posts |
Posted - 2011-11-29 : 02:27:26
|
Guys,Please correct me if im wrong or if you have any idea.I modify through the script and insert this codes.Abs(Qty)but if i will use in SSRS expression ? how to do this. |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2011-11-29 : 03:17:47
|
you've Abs() function in ssrs also------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
Villanuev
Constraint Violating Yak Guru
478 Posts |
Posted - 2011-11-29 : 03:55:30
|
Hi Visakh,How to use in Expression. here is my example.=Fields!Writeoff.Value=Sum(Fields!Writeoff.Value)Is this correct?=Abs(Fields!Writeoff.Value)=Abs(Sum(Fields!Writeoff.Value))another query:I have date parameter start and enddate.set up like this.default values -->specify values -- valuesMy question is when i tried to preview the report in report managerboth this parameter was disabled. i could not use the calendar.because both parameter has aleady a value?thanksJOV |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2011-11-29 : 06:53:05
|
yep...thats correctfor parameters didnt it have values you gave? i dont think it will come as disabled------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|