Hi all!
I've recently been teaching myself how to use basic merge fields in a professional template, and I've hit a bit of a wall when it comes to nested IF statements. I haven't seen anyone talk about this so I thought id put it out there.
Code:
{IF {MERGEFIELD MFC_testlookup1} = "Yes" "82" +
{IF {MERGEFIELD MFC_testlookup2} = "Yes" "82" +
{IF {MERGEFIELD MFC_testBusinessType} = "Couple" "164" ""}}}
Each mergefield has a variable that needs to be added together at the end, so assuming they are all 'true', the total output should be 328. Obviously it doesn't work, but this is the only method of doing this I can think of; then again I'm pretty new to this so any help is highly appreciated!