Forum Discussion
Sameer_Kuppanath_Sultan
Feb 09, 2022Brass Contributor
Custom Format to hide the text in a Cell
Hi All I would like to hide the number by using Custom Format based on Length of the text . (Highlighted Column- Len(a1)<=5). I don't want to use any format or VBA for this. ...
- Feb 09, 2022
it will not work with a custom number format. But you could use conditionally formatting. Menue path:
Home | Conditional Formatting | New Rule...
=LEN(A1)<=5
Number Format:
The ;;; is on a German environment. It could be that you need to use ,,, instead, depending on your local settings. Just give it a try.
Martin_Weiss
Feb 09, 2022Bronze Contributor
it will not work with a custom number format. But you could use conditionally formatting. Menue path:
Home | Conditional Formatting | New Rule...
=LEN(A1)<=5
Number Format:
The ;;; is on a German environment. It could be that you need to use ,,, instead, depending on your local settings. Just give it a try.
Sameer_Kuppanath_Sultan
Feb 10, 2022Brass Contributor
ok got it-Thanks Sir