Forum Discussion
TilalOsman
Apr 29, 2023Copper Contributor
TRIM() fuction
When using a range as an argument for TRIM () function (example: TRIM(@A:A)); it is supposed that TRIM () function will eliminate spaces from the whole text in the A column (each individual cell)- i....
- Apr 29, 2023
Detlef_Lewin
Apr 29, 2023Silver Contributor
Use TRIM(A:A).
@ is used for implicit intersection reference. It will work only adjacent cells.