I'm inputing a list of records to the Update Record action. Let's say 3 records. I want a field in all three records updated. In the Record ID box if I enter a record id only one of the 3 records is updated. if I leave the record id box blank and click search I put one of the record field names in the Display box and I put the following formula in the Formula box.
IF(
OR(
{Net Profit} < 2,
{ROI} < 0.4,
{Average Rank (90 Days)} > 99999,
{Amazon 3x Cost} < 3,
{Pack QTY} > 2,
{Estimated Monthly Sales} < 10,
{# of FBA Sellers} > 5,
{EUM} < 10,
{EPM} < 13,
{Rating} < 3,
{Reviews} < 10,
FIND("Oversize", {Product Size}) != 0,
FIND("yes", {Amazon Sells and in Stock}) != 0
),
RECORD_ID(),
BLANK()
)
This formula is based off the filter I use in the Search Records action. When I try to exit I click ok and the 3 values of the field that I entered in the Display box are displayed but I am unable to exit. It wants me to click ok again and if I do I just get the 3 values displayed again and it wants me to click ok again. I'm stuck in a loop. How do I exit? Thanks.