MoM快速测量在Power BI中的上个月数值?

huangapple go评论85阅读模式
英文:

The last month value of MoM quick measure in Power BI?

问题

我有一个数据集,截止到2020年8月31日,我使用了快速度量的MoM变化,并遇到了一个问题,我的度量显示2020年9月的MoM变化为-100%,如下所示:

我还写了一个DAX公式,而不是使用快速度量,但结果是一样的,我该如何隐藏2020年9月的值?
谢谢大家!

英文:

I have a dataset up to Aug, 31st, 2020 and I use the quick measure MoM changes and got into a problem that my measure shows the MoM change in September, 2020 is -100% like below:
Pict

I also wrote a Dax instead of quick measure but the result was the same, How can I hide the value of September 2020 ?
Thank guys !

答案1

得分: 0

在你的DAX中,添加IF来定义何时收入为空。公式如下:

MoM = IF(
      ISBLANK([Revenue]),BLANK(),
      "这里是你计算的原始MoM")
英文:

In your DAX, add IF to define when the revenue is blank. Formula would be:

MoM = IF(
      ISBLANK([Revenue]),BLANK(),
      "here the original MoM you calculated")

huangapple
  • 本文由 发表于 2023年7月20日 16:16:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/76727917.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定