Hi Patrick, Be aware that UPPERCASE changes the value you give it, rather than just providing a modified copy of the original. I.e. you are actually modifying myvar.
>> myvar: "Title" == "Title" >> mynwevar: uppercase myvar == "TITLE" >> myvar == "TITLE" If you want to leave the original unchanges, COPY it before applying UPPERCASE. >> myvar: "Title" == "Title" >> mynewvar: uppercase copy myvar == "TITLE" >> myvar == "Title" --Gregg -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
