I'm still not sure I understand your question, but it sounds like
you're running the Database Results Wizard, and one of the output
fields has values that contain percent signs, and you'd rather display
spaces.
If that's it, then on page 2 of the wizard you need to click Custom
Query and Edit. This will display a SQL statement that probably
begins:
SELECT * FROM ...
Change this to:
SELECT Replace([myfield],'%',' ') AS modfield, * FROM ...
where myfield is the name of the database field that contains the
percent signs. Then click OK, advance to page 3 of the wizard, click
Edit List, remove the myfield field, and add the modfield field.
Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------