Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
May be this:
LOAD DateReceived,
Date(If(Len(Trim(DateApproved)) = 0, DateReceived + 5, DateApproved)) as DateApproved
FROM ....
Thanks Boss. It worked for me.
Great