Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Table:
Load If(Item_No=1,4,Item_No) as Item_No, .... from xxx.qvd;
Store * from Table into xxx.qvd;
let me know
Tq its working