Invalid location of blank in position position in binary string

Synopsis
You grouped the digits of a binary value incorrectly. A binary number contains groups of digits separated by a blank space in a position evenly divisable by 2 (ie, 2, 4, 8, 16, 32), for example '20 35 16'B. position tells you where you put a blank incorrectly (where position 1 is the first character).

Cause
There is a leading or trailing blank in the expression, for example, '20 35 16 'B.

Cure
Use STRIP() to remove those spaces.

Cause
There are extra blank spaces in the expression, for example, '20 35 16'B.

Cure
Use SPACE() to remove the extra spaces.