Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ecabanas
Creator II
Creator II

Count only numeric codes

Hi all,

I have the salesline table, where I have all my sales. there I have itemid and quantity.

I would like to make a Sum from all the quantities but only from the itemid numeric.

ITEMID     QTY

11111         1

12SSS          4

22222          3

The formula should result: 4

Could somebody help to me?

=num(Sum({<[ITEMID]={'A-Z'}>} QTY),'#.###,')

thank's

Eduard

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe

=sum( if (isnum(ITEMID), QTY))

View solution in original post

2 Replies
swuehl
MVP
MVP

Maybe

=sum( if (isnum(ITEMID), QTY))

ecabanas
Creator II
Creator II
Author

it works!!!! thank's

Eduard