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!View all the Fabric Data Days sessions on demand. View schedule
we have table with below columns.
by using dax we concatinated the above columns with proper spacing
And created the disconnected table/data table(
)
"using the above table logic, we need to concatinate the above four columns dynamically using DAX"
Can any one please help me in this requirement.
Thanks in Advance.
Solved! Go to Solution.
Hi @sandypigili0724 ,
You can create a calculated column as below to get it, it is no required to refer that disconnected table...
Concat =
VAR Str = " "
RETURN
'Customer Record'[Policy Number] & str & 'Customer Record'[Customer Name] & Str & 'Customer Record'[Customer Primary City] & Str & 'Customer Record'[Customer Primary County]
Best Regards
Hi @sandypigili0724 ,
You can create a calculated column as below to get it, it is no required to refer that disconnected table...
Concat =
VAR Str = " "
RETURN
'Customer Record'[Policy Number] & str & 'Customer Record'[Customer Name] & Str & 'Customer Record'[Customer Primary City] & Str & 'Customer Record'[Customer Primary County]
Best Regards
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 |
|---|---|
| 14 | |
| 11 | |
| 9 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 28 | |
| 20 | |
| 19 | |
| 17 | |
| 12 |