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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!