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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello PowerBI developer,
I need to concatenate multiple case statements in @PowerBI like below in SQL. I'm not able to get this can anyone please help me with this?
CONCAT((CASE WHEN DOWMonday = 'Y' THEN 'M' ELSE ' ' END)
,(CASE WHEN DOWTuesday = 'Y' THEN 'T' ELSE ' ' END)
,(CASE WHEN DOWWednesday = 'Y' THEN 'W' ELSE ' ' END)
,(CASE WHEN DOWThursday = 'Y' THEN 'R' ELSE ' ' END)
,(CASE WHEN DOWFriday = 'Y' THEN 'F' ELSE ' ' END)
) AS [Days]
Thanks,
KK
@Anonymous , Try like, a new column in DAX
if( DOWMonday = "Y", "M", blank()) & if( DOWTuesday = "Y", "T", blank()) & if( DOWWednesday = "Y", "W", blank()) & if( DOWThursday = "Y", "T", blank()) & if( DOWFriday = "Y", "F", blank())
Or you can use space in place of blank
if( DOWMonday = "Y", "M", " ") & if( DOWTuesday = "Y", "T", " " ) & if( DOWWednesday = "Y", "W", " ") & if( DOWThursday = "Y", "T", " ") & if( DOWFriday = "Y", "F", " ")
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 10 | |
| 10 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 24 | |
| 19 | |
| 19 | |
| 15 | |
| 9 |