Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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
Luminary Alumni
Luminary Alumni

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.