Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am new to qlik View.
what kind of expression do you want? do you want to sum your Field_Code?
Do you need to do this in the Script?
Hi
{<Field_Code -= {'1*', '2*', '3*', '4*'}>}
HTH
Jonathan
try something like

Logic would be something like:
Sum( If( Not WildMatch(Field_Code, '1*', '2*', '3*', '4*') , Field_Code))
The same you can do with set analysis as well.
Edit: WildMatch
No i dont want to sum.I only want exclude values starting with number 1,2,3,4
then try only({<Field_Code -= {'1*', '2*', '3*', '4*'}>}Field_Code)
Hi Ipshita,
You can give a condition while calling that filed in the script like:
If(wildmatch(Field_Code, '1*', '2*', '3*', '4*',('','','',''))
Thanks,
if(not wildmatch(fieldname,'1*','2*','3*','4*'),fieldname)