Hi @RyanKirk,
I wonder if the syntax on the new version of the builder is tripping things up. Instead of:
CONCAT(IF(ISBLANK(Portfolio.Name),"None",Portfolio.Name)," | ", IF(ISBLANK(Program.Name),"All",Program.Name))
I suggest you try:
CONCAT(IF(ISBLANK({portfolio}.{name}),"None",{portfolio...