使用 DAX 在 power BI 中没有所选月份和所选国家/地区的数据时,如何从切片器显示所选国家/地区名称
How to display the selected country name from slicer when there is no data for the selected month and the selected country in power BI with the DAX
我有一个包含 Country
和 Date
列的 table。
我有一个 Country
和 Date
的切片器,现在当我 select UK
和 May-21
的切片器时,它显示为空白May-21
.
没有数据
现在总想显示selected的国家,不管有没有数据。我尝试使用 DAX、REMOVEFILTERS
和许多其他东西创建一个度量,但它不起作用。
如有任何帮助,我们将不胜感激。谢谢。
使用此代码:
SELECTED COUNTRY =
var __coutries = CALCULATETABLE(values('your table name'[Country]), ALLEXCEPT('your table name','your table name'[Country]))
RETURN
IF(COUNTROWS(__coutries) == 1, __coutries, "")
this article reveals how to manage the familly of allxxx functions.
我有一个包含 Country
和 Date
列的 table。
我有一个 Country
和 Date
的切片器,现在当我 select UK
和 May-21
的切片器时,它显示为空白May-21
.
现在总想显示selected的国家,不管有没有数据。我尝试使用 DAX、REMOVEFILTERS
和许多其他东西创建一个度量,但它不起作用。
如有任何帮助,我们将不胜感激。谢谢。
使用此代码:
SELECTED COUNTRY =
var __coutries = CALCULATETABLE(values('your table name'[Country]), ALLEXCEPT('your table name','your table name'[Country]))
RETURN
IF(COUNTROWS(__coutries) == 1, __coutries, "")
this article reveals how to manage the familly of allxxx functions.