Forum Discussion
Calculated column based on conditions in Child rows
- 3 years ago
Hi , Anonymous
Here are the steps you can refer to :
(1)This is my test data:
(2)We can creat a calculated column to falg the 'State' field:
Flag = IF('Sheet1'[State]="Active" , 1 ,0)(3)We can create another calculated column and then we can meet your need:
Feature Satus = var _count = PATHLENGTH('Sheet1'[Path]) var _last_level = CONVERT( PATHITEM( 'Sheet1'[Path] , _count) ,INTEGER)+0 var _t2 =SUMX( FILTER('Sheet1' , PATHCONTAINS('Sheet1'[Path] , _last_level) && PATHLENGTH('Sheet1'[Path])<> _count ) , [Flag]) return IF( 'Sheet1'[Type] = "Feature" , IF(_t2 =0 ,"Done" , "Is progressing" ) , BLANK())(4)The result is as follows:
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous , on which column basis u need to show feature status?
if you want to show according to state column
then creadte calculate column
feature status= if(state="Active", "done","closed")
- Anonymous3 years agoNot applicable
I want the "Feature Status" to return either "Done" (If all of it's children (ie. "User Story"/"Task") are state "Closed") or return "In Progress" if any of the underlying children are still "Active". The column should only contain values for the rows containing type "Feature".