I\'m working in an SSRS 2005 Report Model Project. I want to create an expression field on a ReportModel that does the same as this C# method:
p
If you cannot find an SSRS solution you can of course create a c# assembly and call it from your report!
It is in fact supported. Use the following expression:
=IIF(delta > 0, ceiling(delta), floor(delta))