Hi,
Under APEX 21.2 I have a graph and I want to show weeks on the X axis number. I use the Unicode CDLR symbol "W" as described in the documentation of CDLR Unicode :
Unicode Locale Data Markup Language (LDML) Part 4: Dates (0 Bytes)But it displays "W" instead of the week.
My select is simple :
select trunc(date1, 'IW') "Semaine", sum(KM_JOURNALIER_VAE) "Km hebdomadaire VAE"
from BO_MAIN_COURANTE
group by trunc(date1, 'IW');
How to display weeks ?
Best regards.
Christian