L002 LEN の引数は変数または文字列式でなければいけません

Len 関数が呼び出され、その引数として文字列式または変数名以外のものが指定されています。以下に例を示します。

Print Len(123)        ' Illegal because 123 is a numeric constant
Print Len("123")      ' Legal. Returns the number of characters in
                      ' the string "123" (3).
Dim X As Integer
Print Len(X%)         ' Legal. Returns the number of bytes allocated
                      ' to store an integer value in memory (2).

引数を文字列の式か変数名にしてください。