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.
Hi - I am trying to sum 2 distinct count measures. Any help would be greatly appreciated.
The 1st measure is a distinct count of "service IDs".
The 2nd measure is a distinct count of "street addresses".
I am recieving an invalid parameter error on the below:
TotaDistinctServiceIDandStreetAddress = CALCULATE(SUM([distinct count ServiceIDs], [DistinctCountStAddrss]))
Thanks,
John
You can simply use this Measure
Measure =
VAR service_IDs =
DISTINCTCOUNT ( financials[Country] )
VAR street_addresses =
DISTINCTCOUNT ( financials[Product] )
RETURN
service_IDs + street_addresses
[distinct count ServiceIDs]+[distinct count ServiceIDs]