开发者

how do i make addition of two fields in ssrs expression?

开发者 https://www.devze.com 2023-04-08 11:22 出处:网络
I have generated one ssrs report now i have two fields having values 1st f开发者_如何学Pythonield value is =Fields!FirstNO.Value

I have generated one ssrs report

now i have two fields having values

1st f开发者_如何学Pythonield value is =Fields!FirstNO.Value

2nd field value is =Fields!SecondNO.Value

now i have one field average and i need to write expression like

average = (Fields!FirstNO.Value+Fields!SecondNO.Value) / (Fields!SecondNO.Value)

how can i write above in expression?? directly as i shown or any other syntax is there please help?


Are you sure these fields are numeric? Maybe try convert to numeric, like =cint(Fields!FirstNO.Value)

0

精彩评论

暂无评论...
验证码 换一张
取 消