Select() Expression or [Related Childs] expression?

NCD
Silver 2
Silver 2

I would like to create an expression saying if one of the child record's status is "In Process" make the status of the Parent record "In Process" as well.

Can Anybody help me with this?

Thank you.

image.png

 

 

Solved Solved
0 1 85
1 ACCEPTED SOLUTION

[Related Childs] is always better than SELECT() because [Related Childs] is anyway created by the system.

Your expression for the VC [Status] in the parent table can be 

IF ( IN( "In Process", [Related Childs][Status]), "In Process", "The Other Status")

"The Other Status" can be the status you want to show when none of the child table statuses is "In Process"

Please post such questions in "Q&A" section.

View solution in original post

1 REPLY 1

[Related Childs] is always better than SELECT() because [Related Childs] is anyway created by the system.

Your expression for the VC [Status] in the parent table can be 

IF ( IN( "In Process", [Related Childs][Status]), "In Process", "The Other Status")

"The Other Status" can be the status you want to show when none of the child table statuses is "In Process"

Please post such questions in "Q&A" section.

Top Labels in this Space