<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>using variables in file names</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>Is there anyway to create a file using a variable?</FONT>
</P>

<P><FONT SIZE=2>Suppose I have a variable called sub and I want to save text to a file named sub.txt where sub is a number from 1 to 100.</FONT></P>

<P><FONT SIZE=2>Normally, I would write</FONT>
</P>

<P><FONT SIZE=2>open file &quot;sub.txt&quot;</FONT>
<BR><FONT SIZE=2>put results &amp; cr into file &quot;sub.txt&quot; at eof</FONT>
<BR><FONT SIZE=2>close file &quot;sub.txt&quot;</FONT>
</P>

<P><FONT SIZE=2>How can I change the filename based on the current value of sub?</FONT>
</P>

<P><FONT SIZE=2>Thanks!</FONT>
</P>

</BODY>
</HTML>