Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
C1,C2,C3
10,20,[C1]+[C2]=30
This works in QV, can we do something similar in QS
Hi @D19PAL ,
You can write expression like
Column(1)+column(2)..
Hi
Try like below
Load *,C1+C2 as C3 inline
[
C1,C2
10,20
];
o/p:
Hi @D19PAL,
Are you looking for the same to be done on the table or script?
Table
It should ideally work in similar way in qs as well. If if you are facing issues, please elaborate.
Hi @D19PAL ,
You can write expression like
Column(1)+column(2)..
Thanks,
How about in the script
Hi
Try like below
Load *,C1+C2 as C3 inline
[
C1,C2
10,20
];
o/p: