1. Strip hidden line-breaks from plan names
| Customer | Plan |
| Acme Corp | Pro Plan Premium |
=CLEAN(B2)Result: Pro PlanPremium
Cell B2 contains a line-feed character (CHAR(10)) between "Pro Plan" and "Premium". CLEAN scans the string and removes the line-feed, concatenating the visible parts. The function returns the cleaned text without any hidden break.