Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
sannidhikumar
Creator
Creator

Date Format

Hi All ,

how can i get date format  in calender object.

Capture1.JPG

how can i achieve this .

thanks,

26 Replies
tajmohamed30
Creator III
Creator III

have you checked the properties Number tab>tick override document settings>Select Date and check format pattern and give ok

kamal_sanguri
Specialist
Specialist

try this

=date(date#(date(min(BatchDate2),'YYYYDDMM'),'YYYYDDMM'),'DD/MM/YYYY')

=date(date#(date(max(BatchDate2),'YYYYDDMM'),'YYYYDDMM'),'DD/MM/YYYY')

sannidhikumar
Creator
Creator
Author

HI,

thanks for reply Taj and Kamal i used this format

=date(min(BatchDate2),'DD/MM/YYYY')

=date(max(BatchDate2),'DD/MM/YYYY')

i got the format this way . and in the table it is not changing when dates changing any idea on this let me know ,

Capture1.JPG

Capture2.JPG

kamal_sanguri
Specialist
Specialist

because you have specifically asked Qlikview to format date inside the date picker only, you have to do same for the dates in table.

so, something like

Date(Date#(DateField,'DD-MM-YYYY'),'DD/MM/YYYY')

sannidhikumar
Creator
Creator
Author

Kamal ,

i got what u said but below table should show as per date selection how can i make it any expression .

thanks ,

sannidhikumar
Creator
Creator
Author

kamal ,

expression is =SUM(AMOUNT_USD)/FX_CONV_RT/metric

dimentions are Explannation and batchdate2

how can i make the expression to run as per selection dates.

thanks ,

Not applicable

Could you try changing it to web view and see if it works afterwards?

kamal_sanguri
Specialist
Specialist

sum({$<BatchDate2={">=StartDate<=Enddate"}>AMOUNT_USD)/FX_CONV_RT/metric


EDIT


Start date and End Date would be the dates from your calendar control. You can save those two dates in variable and can use in place of StartDate and EndDate

sannidhikumar
Creator
Creator
Author

kamal ,

thanks for the help .

thanks ,

pradeep

kamal_sanguri
Specialist
Specialist

No worries, happy that your issue is resolved.