Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi there ;
I need to create a column which is calling " statu" in my below table .Could you pls help to create to me .
Rules will be like that ;
System wil check based on order number ;
For each order to seem that statu is "Close" , main rule is all the lines result must be TRUE , if not for each order status mut be "open"
you can see below example also
Solved! Go to Solution.
@erhan_79 , Create a new column
New column =
var _cnt = countx(filter(Table, [order number] =earlier([order number]) && [result] ="FALSE"),[order number])+0
return
if(_cnt >0 , "FALSE", "TRUE")
Use binary true false if needed
@erhan_79 , Create a new column
New column =
var _cnt = countx(filter(Table, [order number] =earlier([order number]) && [result] ="FALSE"),[order number])+0
return
if(_cnt >0 , "FALSE", "TRUE")
Use binary true false if needed