Hi,
Wondered if anyone could help with this…
I have the following fields
Title, Sub Title, Series Title and Series Order
Then I have a full title field where I want to bring those together depending on which of those is filled in.
So, if there’s a Sub Title, I want the Full title to show {Title}: {Sub Title}. If there is a series title then I want it to show {Title}: {Series Title} {Series Order} (as an aside, if I could get the series order in brackets that would be amazing, but I suspect impossible because brackets are part of the formula). And if neither Sub Title nor Series Title have an entry then I just want the {Title}. I don’t think there’ll ever be a case where we have a series title and a sub title so I’m not worried about that for now.
At the moment I have:
IF(
{Series Title}, {Title} & ": " & {Series Title} & " " & {Series Order},
IF(
{Sub Title}, {Title} & ": " & {Sub Title},
IF({Series Title} = BLANK(), AND({Sub Title} = BLANK(), {Title}))
))
And it works for the cases where there is a Sub Title or Series Title, but everything else just returns the word True. What have I done wrong?
Thank you

