Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
vipin_mishra479
Creator II
Creator II

replace one date to all date

Hi all,

i have a 4 field

Order,level,mov_type,date

and my question is that

i want to replace 101 mov_type date to all 261 mov_type with respect to order and level

eg-

this is my table

Orderlevelmov_typeDate
2252601013/6/2012
2252612619/9/2013
2252622619/11/2013

I want to replace 101 mov_typ date to 261 or 262 all date

Orderlevelmov_typeDate
2252601013/6/2012
2252612613/6/2012
2252622613/6/2012

here i attached the qvw

1 Solution

Accepted Solutions
nagaiank
Specialist III
Specialist III

Add the script

Temp:

LOAD Order, Date as Date2 Resident YourData where mov_type = 101;

Left Join (YourData) LOAD * Resident Temp;

DROP Table Temp;

The application is attached.

View solution in original post

1 Reply
nagaiank
Specialist III
Specialist III

Add the script

Temp:

LOAD Order, Date as Date2 Resident YourData where mov_type = 101;

Left Join (YourData) LOAD * Resident Temp;

DROP Table Temp;

The application is attached.