What's the equivalent of the FORMAT function in SQL Server 7.

I'm converting an older app from DAO, and sometimes comes up with a query that includes the following: -

Format(ROUND(([GrossPrice]+[Tax]-((([GrossPrice]+[Tax])/100)*[Commission])),2),'0.00') AS Net

but SQL Server doesn't like FORMAT...