The formula for the table is not working. For the previous page depending on the item selected decides the commodity selected. The formula that is used Set(varCommodity,"Avocado");Set(varconditioningday,"4");Navigate(EditScreen3,ScreenTransition.Fade)
For the commodity I added the next formula
If( varCommodity = "Avocado", {Result: "Avocado", Value: "Avocado"}, varCommodity = "Mango", {Result: "Mango", Value: "Mango"}, varCommodity = "Kiwi", {Result: "Kiwi", Value: "Kiwi"}, varCommodity = "Pear", {Result: "Pear", Value: "Pear"}, varCommodity = "Honeydew", {Result: "Honeydew", Value: "Honeydew"} ;Table( { Result : varCommodity , Value : varCommodity } )
For the item description I used
Filter( 'Conditioning Tool 2', 'item description' = varCommodity)
The Formula is not working.