Type search words and press enter
"Use Edit Log for transactions/masters, and digital signature for invoices/reports with Release 2.1. Download NOW!"
https://help.tallysolutions.com/docs/td9rel54/faq/6815.html

Comparing strings with special characters

To compare strings with Special characters one needs to use the Platform Function ExactMatch. The reason why we need to use Function ExactMatch is usually Tally ignores special characters which means LT equals to L & T for simplicity.

Hence, when comparisons need to be done including special characters like spaces, slashes, ampersands, etc. one needs to use Function ExactMatch to compare each character exactly.

Code Snippet:

$$ExactMatch:##VarInputString:” ”

In the above code snippet, VarInputString is a Variable which is compared with another string " " (Space).  Function ExactMatch returns True if the value of the Variable VarInputString equals to " ".