The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
69 | |
65 | |
63 | |
55 | |
28 |
User | Count |
---|---|
112 | |
81 | |
65 | |
48 | |
43 |