Conditional Logicbeginner
Nested IF grade scale
=IF(B2>=90,"A",IF(B2>=80,"B",IF(B2>=70,"C",IF(B2>=60,"D","F"))))
Merge name parts from separate columns while skipping blanks automatically.
Step-by-step instructions
Use a space as the delimiter between each text value.
Set the second argument to TRUE so blank cells are ignored.
Pass the range containing the separate name parts.
Example data
| First | Middle | Last |
|---|---|---|
| Mina | Kaya | |
| Eren | Ali | Demir |
Common mistakes
Extra separators appear
Make sure the ignore-empty argument is TRUE so blank cells do not create unwanted spaces.
FAQ
Can TEXTJOIN handle blank middle names?
Yes. With TRUE as the ignore-empty argument, blank cells are skipped automatically.
Related how-to guides