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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Null value in a Date column updated with other date column

Hello QV Experts,

I have two columns DateReceived & DateApproved.

In DateApproved column having few null values, so that i need to update those DateApproved column with (DateReceived + 5).

Can you please suggest me.

Appreciate your prompt response.

Thanks,
Sasi

3 Replies
sunny_talwar

May be this:

LOAD DateReceived,

          Date(If(Len(Trim(DateApproved)) = 0, DateReceived + 5, DateApproved)) as DateApproved

FROM ....

Not applicable
Author

Thanks Boss. It worked for me.

sunny_talwar

Great