Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Somebody can help me?
Like the sample attached, how can I create a column ( name K) with value 5 if value k1 is Null and value Altro is not NULL, otherwise K set up with value of field K1?
Thank All
Hi,
Attach your data sources.
i could see only application.
- Sridhar
Hi,
Try droping your 1st table using below code.
drop table Sez1;
Note:
The above drop statement should be the last line of your script.
- Sridhar
HI try this expression
if
(IsNull(K1) =-1 and IsNull(Altro)=0, 5) as K
its not working then attach ur excel file here
-Sathish
Sorry,
Now I attach the file QLV and the file Excel.
Thank All
Hi,
Check the attahed application now.
I would suggest you to go for len() function instead of isnull()
- Sridhar