Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hey 🙂
I am having some troubles here. Can you help me, please?
I have a table with similar content to this on PowerBI. I have the columns ID_Date_Company and Center. I need to calculate the column HowManyCenters? How can I do this?
Basically, i want to know how many different centers one ID match has. Note that there can be multiple lines that have the same ID, thats why i need to know how many centers there are.
Thanks!
Please try
HowManyCenters? =
COUNTROWS (
CALCULATETABLE (
VALUES ( 'Table'[Center] ),
ALLEXCEPT ( 'Table', 'Table'[ID Date Company] )
)
)