Hi,
I have an unbounded control on my form and I want to have a nested if expression attached to it.
I have three radio buttons: Approved, Denied and Accepted. I also have two fields: DateOfCommunication and Timeframe.
Here's what I came up with for a nested statement. Suffice it to say that it doesn't work...
=IIF([Approved] = True Or [Accepted] = True, (IIF([Timeframe] = "6 months", DateAdd("m",6,[DateOfCommunication]),DateAdd("m", 12, [DateOfCommunication])), Null)
So in effect I'm wanting the expression to figure out a date in the control if Approved or Accepted is clicked and no value in the control if Denied is clicked.
Am I even close?
Lynn![]()