Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I'm facing issues on a requirement plz someone help on this,
Say I have four Columns: 'Instrument_Type' and 'Industry_subgroup' and 'Exposure' and 'Net_Value'.
When any field values are selected under 'Instrument_Type' it should exclude selections from 'Industry_subgroup' and give a sum('Exposure').
The field value selections can vary for 'Instrument_Type', plz refer the sample data for reference.
Please help in achieving this.
I'm trying it with below equation but not sure how to move forward.
if(WildMatch(INSTRUMENT_TYPE,'*Bond*','*Bond Future*'),'good','bad') as INST_TYPE,
Thanks & Regards
if you want to exclude selection do below
=sum ( {<Instrument_Type = >} value)
add this in your script
IF(INSTRUMENT_TYPE like '*Bond*' or INSTRUMENT_TYPE like '*Bond Fou*','B1','B2') as INSTRUMENT_TYPE_B,
Hello,
but this will be a form of static expression, In future if any other fields gets added then we need to add it in script again..
IF(INSTRUMENT_TYPE like '*Bond*' or INSTRUMENT_TYPE like '*Bond Fou*','B1','B2') as INSTRUMENT_TYPE_B,
So is there any dynamic way in achieving this??
Thanks & Regards
better way is to edit script than your expressions one place you edit and all dashboard you will see changes
if you use in expression also you need to edit but may be many places...changes is common..better go with script