Subject: having another issue now.
Here is what I am trying to do. Based on what regions are affected a box shows up and then they have to Test it before they can close the ticket.
This formula gives me the correct message now message now (not allowing it to be closed ) , but when I go in and edit it and put the dates the error still shows.
At any given time they may only select 1, 2 or 3 additional regions. so I only care about if they selected asia and if the date tested is blank, then I don’t want them to be able to close the ticket, otherwise they can.
Global Impact: Yes/No
Addtional Regions Affected: RegAffected (Asia, Brazil, Europe, America’s)
DateTested_1 shows if they select asia
DateTested_2 shows if they select Brazil
DateTested_3 shows if they select America’s
DateTest_4 shows if they select Europe.
I changed your formula a little just thinking that maybe this would work. But it didn’t 
@If(@IsDocBeingSaved & (
(YesNo = “Yes” & @IsMember(“Asia” ; RegAffected) & DateTest_1 = “”) |
(YesNo = “Yes” & @IsMember(“Brazil” ; RegAffected) & DateTest_2 = “”) |
(YesNo = “Yes” & @IsMember(“America’s” ; RegAffected) & DateTest_3 = “”) |
(YesNo = “Yes” & @IsMember(“Europe” ; RegAffected) & DateTest_4 = “”)
);
@Failure(“This document can not be closed until all testing has been completed for the additional regions selected”);
@Success)