Gregory Jones
12/22/2021, 8:40 PMNetsuite Tragic
12/22/2021, 8:50 PMGregory Jones
12/22/2021, 9:42 PMcase when {checkboxfield} = 'T' and {locationquantityavailable} >= 5 then 'whatever' else 'whatever2' end
and it "works" but the accuracy is questionable. I want to look at the total available for both locations, and that formula doesn't do that. So I could have 4 at one location, and 2 at the other, and that formula wouldn't output the correct text.Gregory Jones
12/22/2021, 9:43 PM{locationquantityavailable}
in sum()
and netsuite didn't like that.Netsuite Tragic
12/22/2021, 11:19 PMNetsuite Tragic
12/22/2021, 11:25 PMNetsuite Tragic
12/22/2021, 11:25 PMNetsuite Tragic
12/22/2021, 11:26 PMNetsuite Tragic
12/22/2021, 11:26 PMAI1
12/23/2021, 2:35 AMGregory Jones
12/23/2021, 1:24 PMCASE WHEN SUM{{locationquantityavailable}) >= 5 AND MAX({checkbox}) = MAX('T') THEN 'this text' else 'other text' END
It was the Max('T')
that was missing in my attempts...I had tried without it and it wasn't working....would never have thought to try that.Netsuite Tragic
12/23/2021, 11:13 PM