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: 
priyarane
Specialist
Specialist

Expression

Hi Community,

how to write below expression

bis_entity_type_new in ('SME_EU', 'SME_EU_RET') THEN rwa/0.7619  

3 Replies
tamilarasu
Champion
Champion

Try like 

If(match(bis_entity_type_new,'SME_EU','SME_EU_RET'),rwa/0.7619)

vishsaggi
Champion III
Champion III

You can also use wildmatch here for case insensitive search.

If(wildmatch(bis_entity_type_new,'*SME_EU*','*SME_EU_RET*'), rwa/0.7619)




V.

jagan
Partner - Champion III
Partner - Champion III

HI,

Try this expression

=Sum({<bis_entity_type_new ={'SME_EU', 'SME_EU_RET'}>} rwa) /0.7619

OR

=Sum({<bis_entity_type_new ={'SME_EU', 'SME_EU_RET'}>} rwa/0.7619)


Hope this helps you.


Regards,

Jagan.