Larry Bud wrote:
> Sonnich wrote:
> > ...is it the posssible to:
> >
> > format a field as "currency" or "number"?
> > format a field as a formula?
> >
> > I create my sheet as a table
> > Response.ContentType = "application/vnd.ms-excel"
> > response.write('<tr><td>blahblah</td></tr>');
> >
> > is there any other way?
>
> Yes. Here are the styles that I've built up for exactly this purpose:
>
> .number0dec {mso-number-format:"0"}
> .number2dec {mso-number-format: Fixed;}
> .number4dec {mso-number-format:"0\.0000"}
> .number6dec {mso-number-format:"0\.000000"}
> .number4decbold {mso-number-format:"0\.0000"; font-weight:700}
> .number2decbold {mso-number-format: Fixed; font-weight:700;}
Thanks a lot for the other answer, the almost completed my current
task.
At first I did not get this

But I got it at last
<STYLE TYPE="text/css"><!--
.number2dec {mso-number-format: Fixed;}
--></STYLE>
and
"<tr><td class=""number2dec"">5,666 blahblah
Thanks a bunch
Sonnich