Hello everyone,
I'm not getting anywhere right now.
Initial situation:
I have a gallery, there are three fields among other things:
1. Absence type
2. Status (approved, request open)
3. Number of days (this field indicates the value of the absence)
I also have an icon in this gallery where I would like to change the request from request open to approved
So far it works.
Now I would like to put the days that are for the respective request into a label field (this is outside the gallery)
Now to my problem:
This label field (outside) should only be visible if the absence type = approved and also only if the absence type is set to training
I tried the following:
Visible on the Label Field:
If(Label1_169.Text = "approved" && Label1_41.Text = "training";true; false)
Label1_169.Text and Label1_41.Text = Field from Gallery
also set a variable on the icon = Set(typ;ThisItem);;
If I now confirm a line (via the icon) it works, but if I want to add a second entry, it overwrites the existing one
What am I doing wrong: