
i have a var let say nom..
i input the value of nom and i want the macro to:
if nom is less then 80 add %nom% to a file called test.txt
but if nom is more then 80 i just want it to add %nom% to this file.
HELP!!!

Moderators: JRL, Dorian (MJT support)
Remember if you Cut/Paste from forum to remove trailing space characters. You can do this in the Editor. Click on Edit, Show All Chars and Remove Trailing Spaces.Label>Start
Input>nom,Enter nom value
If>%nom%%nom%>80,NoFont
MessageModal>nom = 80, please renter
Goto>Start
Label>Font
WriteLn>test.txt, %nom% ,line
Goto>End
Label>NoFont
WriteLn>test.txt,%nom%,line
Label>End