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.
I have a measure that counts the number of employees. The number of employees is more than a thousand employees. I have to click on the measure to access the measure tools and click the comma icon because the number is greater than a thousand. I have another measure that counts the number of departments with some special characters. I want to concatenate the two measures, but when I do, I lose the comma from the first measure. Here is the Dax of which I have:
Number of Employees and Departments = CONCATENATE(CONCATENATE(CONCATENATE([Number of Employees], " ("), [Number of Departments]), IF([Number of Departments] = 1, " dept.)", " depts.)"))
When using the card visual and using the DAX provided, I am not able to see the comma.
It should be 4,472 (18 depts.)
Thanks again for your help.
@mcampos0809 , Try like
[Number of Employees] & " (" & [Number of Departments] & IF([Number of Departments] = 1, " dept.)", " depts.)" )