We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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 restaurant
ex , I select Brand " A " , It show 4 restaurant
Index Restaurant_Name Amount
1 KFC 10000
2 BBQ 15000
3 Xuxu 24000
4 McDobal 9000
Solved! Go to Solution.
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.
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.
With column " Amount " is created with Measure.
You can go to Query editor --> Add Column --> Add Index Column.
No , I want to create index auto with restaurants after I select brand. If Use Querry Editor , It show result failer
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 62 | |
| 38 | |
| 34 | |
| 22 |