Forum Discussion
Anonymous
6 years agoNot applicable
INDEX for table with DAX
Hello , I want to create index wiht DAX for following table. But I could not create a column because working in Direct Query. That why I need a different solution. The index that will be cre...
Anonymous
6 years agoNot applicable
Yes,Sales price is measure. I want to add index column for power bi visual on above.
az38
6 years agoCommunity Champion
Hi Anonymous
according the radacad RANKX bible from amitchandak link, you can try to create a measure like
RANKX(
ALL('Table') ,
CALCULATE(
SUM('Table'[Sales Price])
)
)