Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to change all the day from Date attribute into day 1

Hi,

I have Created_date in my Table

1/30/2013

2/27/2014

2/26/2014

5/1/2014

But I want to change in the load script like shown below:

1/1/2013

2/1/2014

2/1/2014

5/1/2014

Could you please advise me

Best

Robert

1 Solution

Accepted Solutions
ashfaq_haseeb
Champion III
Champion III

Hi,

use month start finction.

Like below

load Date,

MonthStart(Date) as Date1;

load * Inline

[

Date

1/30/2013

2/27/2014

2/26/2014

5/1/2014

]

Regards

ASHFAQ

View solution in original post

3 Replies
ashfaq_haseeb
Champion III
Champion III

Hi,

use month start finction.

Like below

load Date,

MonthStart(Date) as Date1;

load * Inline

[

Date

1/30/2013

2/27/2014

2/26/2014

5/1/2014

]

Regards

ASHFAQ

Not applicable
Author

Thanks.

ashfaq_haseeb
Champion III
Champion III

welcome