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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

Date

Hi Expertise

Please find the attachment of qlikview file and excel .

I have created date and other dates

I need to show the week end date and week start date as two separate fields from Created .

Please someone help me on this

Thanks in advance

3 Replies
andrey_krylov
Specialist
Specialist

Like this?

Anonymous
Not applicable

Hi,

Try this

"Test:

LOAD Severity,

     Status,

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

     Week(Created) as Week,

     Resolved,

     Closed

FROM

(ooxml, embedded labels, table is Sheet1);

Load*,

date(WeekEnd(Created),'DD/MM/YYYY') as WeekEndDate,

date(Weekstart(Created),'DD/MM/YYYY') as WeekstartDate

Resident Test;

drop Table Test "

chakiw5
Contributor III
Contributor III

Is it like this?