Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 214 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
BICS dashboard prompt - Filtering fiscal year prompt to only show years greater than 2000

Summary
BICS dashboard prompt - Filtering fiscal year prompt to only show years greater than 2000
Content
BICS dashboard prompt - Filtering fiscal year prompt to only show years greater than 2000
I am creating a dashboard that has a prompt for fiscal years. When you select the dropdown it gives the following values: (1, 2, 3, 2000, 2001, 2002, etc.) I want to create a SQL statement to only show years greater than 2000. Here is the SQL statement I have drafted.
SELECT "Time"."Fiscal Year" FROM "Financials - GL Balance Sheet" WHERE "Time"."Fiscal Year" >= 2000
Thanks,
Answers
-
Since Time is sometimes not stored as a numeric value, I would try something like
SELECT "Time"."Fiscal Year" FROM "Financials - GL Balance Sheet" WHERE "Time"."Fiscal Year" LIKE ‘20%’;
Sarah Craynon Zumbrum | Enterprise Cloud Architect
Public Sector BI/Analytics
Mobile: +1 919 917 6571
0 -
Thank you! The corrected code for my specific problem was:
SELECT "Time"."Fiscal Year" FROM "Financials - GL Balance Sheet" WHERE "Time"."Fiscal Year" >= '2000';
0