Other Report Builder 3 and select "New ..." to trigger the New Report of Dataset wizard;
Report Builder 3: New Report of Dataset Wizard |
"New Report" report will be automatically selected on the left, on the right select "Table or Matrix Wizard" (the top item);
Report Builder 3: New Table or Matrix Report Wizard |
Report Builder 3: Choose a Data Source |
From the list you need to select a Data Source connection to use and then click "Next" at the bottom right;
Report Builder 3: Design A Query |
SELECT TO_CHAR(SYSDATE, 'DD-MON-YYYY') AS DATE_TODAY,
TO_CHAR(TRUNC(SYSDATE, 'MM'), 'DD-MON-YYYY') AS DATE_FIRST_OF_MONTH,
TO_CHAR(ADD_MONTHS(TRUNC(SYSDATE, 'MM'), 1) - 1, 'DD-MON-YYYY') AS DATE_LAST_OF_MONTH
FROM DUAL
This simple piece of SQL just gives us a single row with today's date as well as the first and last days of the current month. Click the Run button (red exclamation mark above where you entered the SQL) to check the SQL works;
Design A Query: Testing the SQL |
Report Builder 3: Arrange Fields |
Report Builder 3: Arrange Fields |
Report Builder 3: Choose the Layout |
Report Builder 3: Choose a Style |
The report has now been completely generated and you will be presented with something similar to;
Report Builder 3: Fully Generated Report |
Report Builder 3: Testing Generated Report |
And you're done ....
0 comments:
Post a Comment