Forum Discussion
phamtrinh96
7 years agoHelper II
[ Create Index Auto with Measure ]
Hi , I have a problem and I need from your help. I have 1 slicer select Brands. when I select one or many Barnd then slicer table will show many restaurant of Barnd. And I want to create Index for ...
- 7 years ago
You may create a measure using DAX like pattern below:
Index = RANKX ( ALLSELECTED ( Table[Brands] ), CALCULATE ( SUM ( Table[Amount] ) ), , DESC, DENSE )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
phamtrinh96
7 years agoHelper II
With column " Amount " is created with Measure.
rocky09
7 years agoSolution Sage
You can go to Query editor --> Add Column --> Add Index Column.
- phamtrinh967 years agoHelper II
No , I want to create index auto with restaurants after I select brand. If Use Querry Editor , It show result failer