Skip to main content

How to add a unique sequence number field in Power BI visual?

Table of Contents

Though no built-in solution is offered by Power BI, the newly added row number function will be just applied to get this done.

Example

Seq No = ROWNUMBER(ALLSELECTED('Item'[Brand], 'Item'[Category]),ORDERBY([Net],DESC),LAST)

Add comment