I tried this a lot,
I have two tables
parent table named “Blend” and child table called “Yield” each blend record has many yield records. and its reference is based on the “Blend Unique ID” column.
What I need is to set up the initial value for a column in the blend table (Parent) based on the list values for a column “yield status” in the “Yield” Table (chiled). I tried something like this
If this row reference list continues “no” in the “yield status” column then “On progress” and if the “yield status” column is continues “Yes” then make it “Finished”
I’m not sure I follow all the details of your implementation or what you need. Try something like the following to see whether it accomplishes your goal. If not, maybe post some screenshots.
IF(COUNT([Related Yields]) = COUNT([Related Yields][Yield Status]), "Finished", "In progress")
Are you wanting the Blend’s [status] to update based on the status of the related Yields?
If so, maybe try this, although It’s very hard to follow what you’re saying, so this could be very wrong. Create a new Virtual Column on Blend, with a formula
IF( IN( “Yes” , [Related Yields][column to check for yes] ) , “Finish” , “In Progress” )
Thanks for your help, it’s working only on the Virtual Column, I tried the same formula on the app formula on a regular column but it’s not working. do you know why?