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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to calculate percentage when both measure are in the same field?

Dear Community,

I would like to know the correct formula, let's say:

SourceType
Telephoneconverted
Mobilereserved
Telephoneothers
Mobileconverted
Telephonereserved

The outcome should be

Total count Source /Type(converted & reserved)

Thanks.

3 Replies
qlikviewwizard
Master II
Master II

Hi,

Can you show us your required output?

qlikviewwizard
Master II
Master II

Hi,

Check this. Is this required output?

Count:

LOAD * INLINE [

Source,Type

Telephone,converted

Mobile,reserved

Telephone,others

Mobile,converted

Telephone,reserved

];

Capture.JPG

arvind1494
Specialist
Specialist

Hi Ice,

First load your data

and use following expression in front end:

choose table

dimension = Source

Measure = count(total source)/count({<Type={'converted','reserved'}>}Type)