Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

replace qvd field value

Hello,

I am having a qvd with field name Item_No, Name.

I have field values for Item_No as 1, 2, 3

Now I have to replace Field value 1 as 4 in that qvd, So the new values should be 4,2,3.

for ex: if(Item_No=1, 4,Item_no) 

How should I write this logic in Script.

Thanks

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Table:

Load If(Item_No=1,4,Item_No) as Item_No, .... from xxx.qvd;

Store * from Table into xxx.qvd;

let me know

Not applicable
Author

Tq its working