Hi,
I have a problem with my Patch function. I don't get any error, but the function does nothing.
What I want is to set the text field "Försenad" to either "Ja" or "Nej" depending on two different controls.
If(And(
DateValue8.Value <= Today(); Text(DataCardValue1.Selected.Value) = "Nej");
Patch(
LookUp(Projekt; ID = DataCardValue35.Value);
{
Försenad: "Ja"
}
);
Patch(
LookUp(Projekt; ID = DataCardValue35.Value);
{
Försenad: "Nej"
}
)
)
What is it I am missing here?
Regards,
Niclas