How to use Floor/Ceiling in a ReportModel expression field?

前端 未结 2 969
长情又很酷
长情又很酷 2021-01-28 14:28

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         


        
相关标签:
2条回答
  • 2021-01-28 15:10

    If you cannot find an SSRS solution you can of course create a c# assembly and call it from your report!

    0 讨论(0)
  • 2021-01-28 15:30

    It is in fact supported. Use the following expression:

    =IIF(delta > 0, ceiling(delta), floor(delta))
    
    0 讨论(0)
提交回复
热议问题