Skip to main content

IF Formula trouble

  • August 15, 2018
  • 2 replies
  • 22 views

Hi there,

I’d like my primary field to be a formula that is Project (a linked field) + Email Type (a single select field).

If the Email Type field is empty, I’d like the primary field to be Project + Channel (a different single select field).

This is the formula I came up with:

Project & " : " IF({Email Type}=BLANK(), & {Channel}, & {Email Type})

What have I done wrong?

Thank you!

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+7
  • Participating Frequently
  • August 16, 2018

try
Project & " : " & IF({Email Type}=BLANK(), {Channel}, {Email Type})


  • Author
  • Participating Frequently
  • August 17, 2018

try
Project & " : " & IF({Email Type}=BLANK(), {Channel}, {Email Type})


Thank you thank you! That worked. Brilliant.