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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I'm just starting out with Power BI. I'm trying to concatenate the row value and text using DAX (mine is a live connection). But i'm unable to get the dimension value in the measure i'm creating.
Is this possible to do? Here the 'Dimension-Hierarchy'[Platform L3 Desc] gives an error "Cannot find name [Platform L3 Desc]"
_msr_Filtered URL = IF(
HASONEVALUE('Dimension -Hierarchy'[Platform L3 Desc]),
CONCATENATE("link",
CONCATENATE("?filter=xyz'",
CONCATENATE('Dimension - Hierarchy'[Platform L3 Desc],
CONCATENATE([_msr_Selected App],
CONCATENATE("'",
CONCATENATE(" and filter= '",
CONCATENATE([_msr_Selected L3], "'")))))),
CONCATENATE("link",
CONCATENATE("?filter=xyz'",
CONCATENATE([_msr_Selected App],
CONCATENATE("'", ""))))))
Solved! Go to Solution.
Hi @renoyzac
try min(), max() or selectedvalue() to get row value, e.g.
HASONEVALUE(min('Dimension -Hierarchy'[Platform L3 Desc]))
then, you also could use & to concatenate the row value and text, e.g.
I also find a tutorial, you could refer to it,
https://docs.microsoft.com/en-us/dax/text-functions-dax
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @renoyzac
try min(), max() or selectedvalue() to get row value, e.g.
HASONEVALUE(min('Dimension -Hierarchy'[Platform L3 Desc]))
then, you also could use & to concatenate the row value and text, e.g.
I also find a tutorial, you could refer to it,
https://docs.microsoft.com/en-us/dax/text-functions-dax
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Yes, i did end up using SELECTEDVALUE(). Couldn't find any other way.
@renoyzac can you change this to following and see if it works
CONCATENATE(MAX('Dimension - Hierarchy'[Platform L3 Desc]))
or
//if the above does not work
CONCATENATE(CALCULATE(MAX('Dimension - Hierarchy'[Platform L3 Desc]))
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!