Forum Discussion
oldrunner
4 years agoFrequent Visitor
Creating an Index number in DAX
Hi, I need to create a column with index numbers by categories. I have for example 100 different customers and a total of 500 invoices. I need to have a unique index number per customer and invoice....
Keith_Fernandes
Advocate II
4 years agoTry to concat customer_code and Sales_invoice_code to generate a unique key. You can then create an index on this. You can also use RANKX function to get unique count against each value. Try these workarounds.