Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

powerbi - Power BI top gainers

I would like to create a Matrix visualizing MOM top 10 gainer and decliner based transaction count for the respective customer account number across a specified period determined by a slicer.

Table: date, cus_acc_num, inv_num, MMYY

MMYY is a calculated field: EOMONTH('Table'[date],-1)+1


Measures:

TC = DISTINCTCOUNT('Table'[inv_num])
TC LM = CALCULATE(DISTINCTCOUNT('Table'[inv_num]),DATEADD('Table'[MMYY],-1,MONTH))
TC Var = DISTINCTCOUNT('Table'[inv_num]) - [TC LM]
Top 10 = CALCULATE([TC Var],FILTER(VALUES('Table'[cus_acc_num]),IF(RANKX(ALLSELECTED('Table'[cus_acc_num]),,[TC Var])<=10,[TC Var],BLANK())))

Please advise whether the above is correct as Power Bi kept loading without showing any result. Is there any other simplified method to show the above?

question from:https://stackoverflow.com/questions/65842639/power-bi-top-gainers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...