Ajay, For a simple report, there is a simple solution:
Using the same view or table as the report, and the same WHERE clause and ORDER BY clause as your PRINT command, create a command file like this one, with the HTML form of the SELECT command: OUTPUT ajayfile.htm SELECT columns + FROM table + WHERE whatever + ORDER BY whatever + HTML + TITLE 'Ajay''s Report From R:Base' OUTPUT SCREEN LAUNCH ajayfile.htm For more complicated reports, e.g. with groupings and subtotals, you can create your own HTML from R:Base reports or CURSOR loops and WRITE statements. Your own knowledge of HTML is your only limit. Bill On Tue, 13 Nov 2001 10:43:41 -0500, Ajay Sanghvi wrote: >Hi >Can anyone help me in creating a HTML file of my rbase report. >
