by stephenbye on Tue Jun 30, 2009 8:46 pm
Hi Mark,
The Win32 and WinCE versions of the software are the same, so if something works on one then it will work on the other.
The second parameter of the INPUT function specifies the type of value it is expecting, according to this list:
0 formula
1 number
2 text
4 logical
8 reference
16 error
64 array
If your input value will be text then you need to use 2 instead of 1.
If your input value could be a number or text, then you could specify a value of 3 (which is 1+2) and the program should convert the input value to either a number or text as appropriate.
However, there is a problem with the program, and if you do specify a value of 3, it will always try to convert the input value to a number.
I am working on fixing this right now, but in the meantime if you change the 1 to a 2 in the Input formula then it should work correctly.