Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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