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! Learn more
Hi, Below is the data. I want output as mention in Green column. I found there is a way of doing it with Edit Query option. Using Group by & need to write power query. But I want output as per below.
Solved! Go to Solution.
@KL718 ,
Add a calculated column in DAX.
Column =
CONCATENATEX (
FILTER ( Table1, Table1[Name] = EARLIER ( Table1[Name] ) ),
Table1[Exp],
UNICHAR ( 32 )
)
@KL718 ,
Add a calculated column in DAX.
Column =
CONCATENATEX (
FILTER ( Table1, Table1[Name] = EARLIER ( Table1[Name] ) ),
Table1[Exp],
UNICHAR ( 32 )
)
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.