Forum Discussion
Decimal to Binary
- May 29, 2020
Thanks for this. It worked like a champ. Can you direct me to where I could read a bit about what the +0 is doing for me.
Have a great weekend and again, thanks.
TAPS
- TapsterMay 29, 2020Copper Contributor
Spreadsheet attached with error shown on Net ID page cell B11.
Any thoughts, recommendations, assistance appreciated.
- Jos_WoolleyMay 29, 2020Iron Contributor
MID returns a text value, not a numeric. Either coerce your results from MID to numerics viz, for example (cell B8):
=MID(AL5,1,1)+0
else leave them as text and amend your checking formula (cell B11) to:
=AND(B8+0,B9+0)
Personally I'd prefer the former option as working with numerical 0s and 1s is both more logical and practical.
Regards
- TapsterMay 29, 2020Copper Contributor
Thanks for this. It worked like a champ. Can you direct me to where I could read a bit about what the +0 is doing for me.
Have a great weekend and again, thanks.
TAPS