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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
A field in one column has various spellings of the same item...is there a measure i can use during transformation to merge them into the same spelling?
Solved! Go to Solution.
Hi @azad_neenan ,
Please try the following measure:
Measure =
CONCATENATEX (
CALCULATETABLE (
VALUES ( 'Table'[spellings] ),
FILTER ( ALL ( 'Table' ), 'Table'[Items] = MAX ( 'Table'[Items] ) )
),
'Table'[spellings],
", "
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @azad_neenan ,
Please try the following measure:
Measure =
CONCATENATEX (
CALCULATETABLE (
VALUES ( 'Table'[spellings] ),
FILTER ( ALL ( 'Table' ), 'Table'[Items] = MAX ( 'Table'[Items] ) )
),
'Table'[spellings],
", "
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @azad_neenan ,
You can add a new conditional column and select the conditions as "contains" and few letters of the column and give the desired spelling you wish to give.
& Then apply and close.
@azad_neenan -> let me know if it works by marking it as a solution else show me an example of what values you wish to replace and i can help you with the conditions.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.