Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Karim_Khan
Creator III
Creator III

Can we Convert The Default Calender

Can we Convert The Default Calender into Customize calender and How?

KK
11 Replies
MK_QSL
MVP
MVP

No !

You need to use (may be) extension object to change it.

qlikviewwizard
Master II
Master II

What is the mean of default calendar?

qlikviewwizard
Master II
Master II

We can customise the caledar.

MK_QSL
MVP
MVP

What I understood is Karim wants customized calendar rather than the calendar available in Slider/Calendar Object.

avinashelite

As per my knowledge we cannot customize the Qlikview built calendar object but you can create your own custom object and play with the accordingly

MK_QSL
MVP
MVP

Karim_Khan
Creator III
Creator III
Author

Hi Avinash,

   I want to play with our own customizecalendar.But My request was fro customizing the Built in Calendar

SET ThousandSep=',';

SET DecimalSep='.';

SET MoneyThousandSep=',';

SET MoneyDecimalSep='.';

SET MoneyFormat='Rs. #,##0.00;Rs. -#,##0.00';

SET TimeFormat='hh:mm:ss';

SET DateFormat='DD-MM-YYYY';

SET TimestampFormat='DD-MM-YYYY hh:mm:ss[.fff]';

SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';

KK
MK_QSL
MVP
MVP

SET DateFormat='DD-MM-YYYY';

SET TimestampFormat='DD-MM-YYYY hh:mm:ss[.fff]';

you can change to

SET DateFormat='DD-MMM-YYYY';

SET TimestampFormat='DD-MMM-YYYY hh:mm:ss[.fff]';

or

SET DateFormat='DD/MM/YYYY';

SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';

Karim_Khan
Creator III
Creator III
Author

But If Wanted to Start the Month as per my convenience then how can can I implement the same bcoz below code will not work for that

SET MonthNames='Aug;Sep;Oct;Nov;Dec;Jan;Feb;Mar;Apr;May;Jun;Jul;';

KK