S
sonar
Hi, I am looking for a format that will give me an answer of 1 whe
text is typed in and a 0 when cell is left blank
Please help
text is typed in and a 0 when cell is left blank
Please help
Dave Peterson said:Try this in a test worksheet
A1: HiThere
B1: =istext(a1)
c1: =-istext(a1)
d1: =--istext(a1)
Then put a number in A1 and watch the differences.
You'll see True or false in B1. The first minus sign converts the true false to
a number (-1 or 0). The second minus sign changes the sign. (You wanted
+1/0???).