Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
azad_neenan
New Member

Merge different spellings in same column

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?

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @azad_neenan ,

 

Please try the following measure:

 

Measure = 
CONCATENATEX (
    CALCULATETABLE (
        VALUES ( 'Table'[spellings] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Items] = MAX ( 'Table'[Items] ) )
    ),
    'Table'[spellings],
    ", "
)

vkkfmsft_0-1648431805976.png

 

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.

View solution in original post

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

Hi @azad_neenan ,

 

Please try the following measure:

 

Measure = 
CONCATENATEX (
    CALCULATETABLE (
        VALUES ( 'Table'[spellings] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Items] = MAX ( 'Table'[Items] ) )
    ),
    'Table'[spellings],
    ", "
)

vkkfmsft_0-1648431805976.png

 

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.

truptis
Community Champion
Community Champion

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. 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors