Forum Discussion
chanpion13
Jul 30, 2021Copper Contributor
Need help with a quick snippet of code for the conditional formula for showing/hiding fields
hi! i have this code and it works. When the campaign type is set to auto, this field will be visible. =if([$CampaignType]== 'Auto', 'true', 'false') I want to it so that if the campaign t...
- Aug 01, 2021=if([$CampaignType] == 'Auto' || [$CampaignType] == 'Home', 'true', 'false')
RobElliott
Aug 01, 2021Silver Contributor
=if([$CampaignType] == 'Auto' || [$CampaignType] == 'Home', 'true', 'false')
chanpion13
Aug 03, 2021Copper Contributor
brilliant. it worked.