Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Week of the month

Summary
Week of the month
Content
Hello,
I need get the week of the month.
Example: 28/01/2013, shows 5 week.
I'm using the Analysis, in Business Intelligence of Sales Cloud.
Regards,
Tatiane
Answers
-
There is no such thing as 'week of the month' in a normal calendar .
Please be specific if you expect an answer.
0 -
Examples:
01/28/2013, show fifth week of month.
10/17/2017, show third week of month.
0 -
You can provide 100 more examples, more examples do not make this more clear. Logic is what we need. Define 'week of the month'
0 -
-
-
SELECT TO_CHAR(SYSDATE,'W') FROM DUAL;
WW+ - Week of year (1-53) where week 1 starts on the first day of the year and continues to the seventh day of the year.
W+ - Week of month (1-5) where week 1 starts on the first day of the month and ends on the seventh.
0