Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi All,
I’m trying to add a Sr. No. (Serial Number) column to a table visual in Power BI that updates dynamically based on user-applied filters.
Could you please suggest how this can be achieved?
Solved! Go to Solution.
Hi @AnkitaaMishra ,
Thank you for reaching out to Microsoft Fabric Community.
Thank you @pankajnamekar25 for the prompt response.
I have created PBIX file by using sample data, please go through the attached PBIX file.Hope this helps..!!
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Hi @AnkitaaMishra ,
Thank you for reaching out to Microsoft Fabric Community.
Thank you @pankajnamekar25 for the prompt response.
I have created PBIX file by using sample data, please go through the attached PBIX file.Hope this helps..!!
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Hello @AnkitaaMishra
Try this DAX measure
Sr No =
RANKX(
ALLSELECTED('YourTableName'),
SELECTEDVALUE('YourTableName'[SomeColumnToSortBy]),
,
ASC,
DENSE
)
If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
Thanks for your response. I had already tried the ChatGPT solution, but unfortunately, it doesn’t seem to be working in my case.
Would appreciate if you could suggest any alternate approach.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |