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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
I have this measure using CONCATENEX:
Solved! Go to Solution.
Hello @Fusilier
Please try the below measure..
Measure 2 =
IF(
ISFILTERED('Raw Data'[Department]),
CONCATENATEX(VALUES('Raw Data'[Department]), [Department], ", "),
"Choose Departments")
If you find this helpful , please mark it as solution and Your Kudos are much appreciated!
Thank You
Dharmendar S
Hello @Fusilier
Please try the below measure..
Measure 2 =
IF(
ISFILTERED('Raw Data'[Department]),
CONCATENATEX(VALUES('Raw Data'[Department]), [Department], ", "),
"Choose Departments")
If you find this helpful , please mark it as solution and Your Kudos are much appreciated!
Thank You
Dharmendar S
Blimey, that was quick!
Works like a dream.
Thank you.