The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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