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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Kohli
Creator II
Creator II

Reg: Date issue

I have 11 columns in table. Each column has millions of record and each record date format different to each others (in a column). How to get a single date format in all columns?

EX: Table.1

column1                    colmn2                       colomn3

MMDDYYYY           DDMMYYYY                 YYYYDDMM

YYYYMMDD            MMDDYYYY                 DDYYYYMM

I want output:

column1                  column2                 column3

DDMMYYYY         DDMMYYYY           DDMMYYYY

Labels (1)
3 Replies
awhitfield
Partner - Champion
Partner - Champion

Hi,

check this thread for starters:

https://community.qlik.com/message/1158961#1158961

Just search on the community for date format conversion

Andy

Anil_Babu_Samineni
MVP
MVP

May be set environment of qlikview as you required

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
yoganantha321
Creator II
Creator II

Hi Narasaiah,


I also faced the same issue but solved by extracting the field using the below syntax


date(fieldname1,'MM/DD/YYYY')as fieldname1,

date(fieldname2,'MM/DD/YYYY')as fieldname2

and so on.............

or

In main tab,

SET DateFormat='MM/DD/YYYY';

I think this will help you