Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
julioarriaga
Creator II
Creator II

What parameter sets a field's automatic presentation format in a table?

I set up a script with a Today() function and the table displays automatically the Date format (image 1), what parameter controls this?

I tried searching on the Settings -> Document Properties in Number and Tables sheet to no avail (image 2 and 3).

Thanks in advance.

Evidencia1.PNGEvidencia2.PNGEvidencia3.PNG

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Have you tried to increase the width of the column in the Fields properties?

Seems like there are more tags to come...

View solution in original post

10 Replies
Anil_Babu_Samineni

You must aware of SysDate() in DB. The same functionality works as Qlik products. Here, the date format working as System date format of your Machine

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable

if I use today() within a textbox, I get the following value (German date format)

So I suppose, that the return value of today() is (dual) date instead of num,

although it is displayed as num...

(QV11.2 SR15)

trdandamudi
Master II
Master II

It takes it from the script main tab:

SET ThousandSep=',';
SET DecimalSep='.';
SET MoneyThousandSep=',';
SET MoneyDecimalSep='.';
SET MoneyFormat='$#,##0.00;($#,##0.00)';
SET TimeFormat='h:mm:ss TT';
SET DateFormat='M/D/YYYY';
SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';
SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';
SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';

Hope this helps...

julioarriaga
Creator II
Creator II
Author

Thanks, but my question is, what parameter is asigning it as a date? Not where it obtains the type of date format.

Anonymous
Not applicable

as I wrote below, in my opinion it makes no sense as you see at my textbox example...

julioarriaga
Creator II
Creator II
Author

But where is the tag that presents it as a date? The dual presents it as numeric and integer.

Or where is the presentation/number parameter that puts it as a date?

swuehl
MVP
MVP

Have you tried to increase the width of the column in the Fields properties?

Seems like there are more tags to come...

Anonymous
Not applicable

you're right

load today() as test AutoGenerate 1;


But why is it $date, if the return value is num ?!?

swuehl
MVP
MVP

Maybe because the return value is in fact a dual?

today ‒ QlikView

Don't take the auto completion and even the HELP for 100% correct...