foxtrot: Hello?
Jayson: Kuya, Im doing this excel for my boss and I need to know How to check if a cell contains a text or number?
Excel can easily determine if a particular cell contains text using the IsText function which returns TRUE or FALSE. Here is an example:
=IsText(A1)
If A1 contains a text then it will return TRUE, otherwise it will display FALSE.
You can also beautify the displayed result by using IF statement. For example:
=IF(IsText(A1),"Cell contains Text","Cell contains no Text")
Instead of TRUE or FALSE, the formula above will return a pre-define text display.






