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

前端 未结 2 981
长情又很酷
长情又很酷 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:30

    It is in fact supported. Use the following expression:

    =IIF(delta > 0, ceiling(delta), floor(delta))
    

提交回复
热议问题