Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要显示由其他列值过滤的列值的 distinctcount。我已经显示了这个值,但我不知道如何计算这是我的查询:
evaluate summarize( FILTER( Products ,not isblank(Produkty[Brand]) && Produkty[Company] = "blabla" ) ,Produkty[Brand] )
我不确定我的字段名称是否正确,但这应该可以满足您的需要。
Count of BlaBla Brands:= calculate( countrows(distinct(Products[Brand])), Filter('Products', Products[Company] = "blabla" && not(ISBLANK(Products[Brand]))) )