我在PowerPivot中有两个表(交易和帐户)
1. Accounts: AccountID, Address, AccountName, Etc
2. Deals Table:DealsID, Dealsamount, dealsduedate
我有两种措施:
1. #ofAccount: CALCULATE(DISTINCTCOUNT(Accounts[AccountID]))
2. #ofDeals: CALCULATE(DISTINCTCOUNT('Deals'[DealID]))
我正在尝试创建一种度量标准,以告诉我#个没有交易的帐户。 我尝试了以下方法,但是无论帐户是否有交易,我都变得空白。
#ofAccount(NoDeals):=CALCULATE([#ofAccount],filter('Deals',[#ofDeal]=0||[#ofDeal]=blank()))
您能让我知道我做错了什么吗?不胜感激!