英文:
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")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论