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.
我想在 Power Bi 中的分析中获得最低 10% 的 Offer Rate 列。下面是我预期结果的图像。底部 10% 将有另一列。如果它包含在底部 10% 中,它将返回1 ,否则返回 0。
使用此代码:
Flag_Bottom10% = var alllignes=COUNTROWS(All([CODE])) var currentrate=[%Offerrate] return IF( DIVIDE(COUNTROWS(filter('table name',[%Offerrate]>=currentrate)),alllignes )<=0.1,1,0)
并将“表名”替换为您的表名。