Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
Can any one help me to fix syntax for below selection :
SELECT SUM ( OUTAGE_DURATION_MINUTE)
WHERE CAT={'Technical','NoneTech'} AND MAIN_CAUSE <> 'CR'
here is my exercise but it is not working :
Sum({<CAT={'Technical','NoneTech'} , not match(MAIN_CAUSE, 'CR') >}OUTAGE_DURATION_MINUTE)
thanks
Nassim
This should work, May be this
Sum({<CAT={'Technical','NoneTech'} , MAIN_CAUSE =- {'CR'} >} OUTAGE_DURATION_MINUTE)
Or
Sum({<CAT={'Technical','NoneTech'} , MAIN_CAUSE = {'*'}-{'CR'} >} OUTAGE_DURATION_MINUTE)
If not, Please post sample application
May be this?
Sum({<CAT={'Technical','NoneTech'} , MAIN_CAUSE -= {'CR'} >} OUTAGE_DURATION_MINUTE)
thanks for your reply but still there is an error
Can you show image
This should work, May be this
Sum({<CAT={'Technical','NoneTech'} , MAIN_CAUSE =- {'CR'} >} OUTAGE_DURATION_MINUTE)
Or
Sum({<CAT={'Technical','NoneTech'} , MAIN_CAUSE = {'*'}-{'CR'} >} OUTAGE_DURATION_MINUTE)
If not, Please post sample application
This is not an error but a warning. Ignore it. This improper warning with '-' (negation) sign in set analysis is known. It works fine with that warning.
thanks ,it is working
I am assuming, could be Version issue. Please correct me if i am wrong. I am working on QV 12
Yes, perhaps this has just got corrected in QV12 and onward.