0

I am trying to make a calculated column produce a Yes/No when:

IF([Reminder Date]= [Today], “Yes”)

and

IF([Reminder Date] does not equal [Today], “No”)

What is the correct formula?

Ganesh Sanap - MVP
  • 44,918
  • 21
  • 30
  • 61
vier111
  • 145
  • 2
  • 10

2 Answers2

0

The IF has 3 arguments, so:

IF(A, B, C)

  • where A is a boolean expression
  • B is what's returned if A is true and
  • C is what's returned if A is false

So if you want something like:

=IF([Reminder Date]=[Today], "Yes", "No")
Joe McShea
  • 1,515
  • 9
  • 15
0

Basic syntax for IF statement in calculated formula is:

IF(logical_test,value_if_true,value_if_false)

So, try to write down your formula in above format.

Note:

  1. Sometimes comma(,) does not work in formula (I am not sure but it is based on something language on your site). So in that case use semicolon(;) instead of comma(,).

    For detailed information and references check my answer given in below link:

    IF statement with text field isn't possible?

  2. Sometimes, The [Today] is not supported in the Calculated Column. Check below work arounds before using Today in your formula.

Ganesh Sanap - MVP
  • 44,918
  • 21
  • 30
  • 61