Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 7 | |
| 6 |