Youa re also using SQL if you are accessing a database. You
can reformat the field value either in the SQL query, or use asp
functions after the query returns the recordset.
The SQL functions (position, substring and concatenate) might
look something like the following. (I'm not able to test this for
you so I can't say that the code is error-free. Also, the syntax is
for Postgres SQL, so you need to verify it agianst Access SQL):
substring(fieldname from 1 for position('(' in fieldname)) ||
substring(fieldname from ((position(')' in fieldname)+1)) for
(octet_length - (position(')' in fieldname)))
where "fieldname" is the fieldname from the table you are
querying.
If you are using DW to build your SQL query, you might start
it on the Simple pane of that dialog, and then add the code above
in the Advanced pane.