Illegal type suffix on keyword: <keyword>
You included an illegal data type suffix character in the name of a LotusScript® built-in function. Certain LotusScript® built-in functions can end in the $ type suffix character; no other data type suffix character is valid on these functions. The names of other functions cannot end in a data type suffix character. For example:
Print Date() ' Legal
Print Date$() ' Legal
Print Date# ' Illegal
Print CDat(Date) ' Legal
Print CDat$(Date) ' Illegal
Remove the suffix character.