本文介绍了如何写一个“If else then” SSRS中的表达的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hi
我是SSRS的新手。我必须在ssrs中写一个这样的表达式。



如果sum((A / B))= 0则显示总和(((A / B)-1 ))= 0否则显示总和(((A / B)-1))。



我试过这个

1. =总和((A / B)= 0时的情况((A / B)-1)* 0否则((A / B)-1)结束)

2. =总和(情况何时) (A / B)= 0然后((A / B)-1)= 0

当(A / B)<> 0然后(A / B)-1)结束时)

在这两种情况下,我在案例中得到一条红线,表明它是一个无法识别的标识符。还有其他办法吗?

请帮助。

Hi I am new to SSRS. I have to write an expression like this in ssrs.

If sum((A/B))=0 then display sum(((A/B)-1))=0 else display sum(((A/B)-1)).

I have tried this
1. =sum(case when (A/B)=0 then ((A/B)-1)*0 else ((A/B)-1) end)
2. =sum(case when (A/B)=0 then ((A/B)-1)=0
when (A/B)<>0 then (A/B)-1) end)
In both the cases I am getting a red line under the case showing it was an "unrecognised identifier". Is there any other way to do this ???
Pls help.

推荐答案



这篇关于如何写一个“If else then” SSRS中的表达的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 18:56