Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
In my report, each person is grouped because they could have more than one address.
How do I count the number of grouped results so that I can specify postcode1, postcode2, postcode3 etc...?
This is the report builder part:
This is the result when I run the report:
Solved! Go to Solution.
You can use the RowNumber() function passing in the name of the parent group. So if your group is called "Fullname" you could change the postcode to an expression like
= Fields!Postcode.Value & RowNumber("Fullname)
You can use the RowNumber() function passing in the name of the parent group. So if your group is called "Fullname" you could change the postcode to an expression like
= Fields!Postcode.Value & RowNumber("Fullname)