-
Notifications
You must be signed in to change notification settings - Fork 0
/
DefaultFormats.qvs
20 lines (20 loc) · 1.18 KB
/
DefaultFormats.qvs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Default number, date, and text formatting settings.
SET ThousandSep=',';
SET DecimalSep='.';
SET MoneyThousandSep=',';
SET MoneyDecimalSep='.';
SET MoneyFormat='$#,##0.00;-$#,##0.00';
SET TimeFormat='hh:mm:ss'; // Uses leading zeroes and 24-hour clock.
SET DateFormat='YYYY-MM-DD'; // ISO 8601 date format. https://en.wikipedia.org/wiki/ISO_8601
SET TimestampFormat='YYYY-MM-DD hh:mm:ss'; // ISO 8601 for date component. Time component uses leading zeroes and 24-hour clock.
SET FirstWeekDay=6; // First day of week is Sunday.
SET BrokenWeeks=1; // https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/NumberInterpretationVariables/BrokenWeeks.htm
SET ReferenceDay=0;
SET FirstMonthOfYear=1;
SET CollationLocale='en-US';
SET CreateSearchIndexOnReload=1;
SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';
SET LongMonthNames='January;February;March;April;May;June;July;August;September;October;November;December';
SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';
SET LongDayNames='Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sunday';
SET NumericalAbbreviation='3:k;6:M;9:G;12:T;15:P;18:E;21:Z;24:Y;-3:m;-6:μ;-9:n;-12:p;-15:f;-18:a;-21:z;-24:y';