I am using nested if to display 2 conditions as a single field
if(LEGAL_CUST='Y' or LEGAL_TRX='Y','Legal', if(DISPUTE_CUST='Y' OR DISPUTE_TRX='Y','Dispute')) as Category
Issue is only Legal is visible in Category and Dispute is not showing up. I tried displaying Dispute seperately and it shows up in front end. However it does not show up in nested if. How to resolve this?