Hi everyone,
i built a calendar in power apps like a youtube video from Shane Young; and it's work.
i need to fill the label depending on the conditions.
I write a formula with three condition and it's work but when i try to add a fourth condition I cannot write the correct formula. the formula whit trhee condition is this
If(
LookUp(Input14,Self.Text=Text(Created,"dd/mm"), true ),If(Sum(Filter(Input14,Self.Text=Text(Created,"dd/mm")&&Priorit_x00e0_>0),Priorit_x00e0_)>0,Color.Red,Color.Yellow),
RGBA(0,0,0,0))
i need in the last part of IF to insert the condition when the day is < of today the label became green otherwise the label is RGBA(0,0,0,0).
Could you plese help me?