Hello,
I have a question that I canโt figure out to find the solution.
I have a table called โtimesheetโ that is related to a child table called โattendantsโ.
In the table โtimesheetโ I have the fields:
In the table โattendantsโ I have the fields:
The fields in the table โattendantsโ are be filled in automatically by an integration with a external system and cannot be changed by users. They always will have a value. It is just a reference table.
An attendant can only occur once and has only on emailattendant, nameattendant and department.
What I would like to happen is that when a user uses the app to fill in the timesheet, the name of the field coach will be fetched from the table โattendantsโ field โnameattendantโ, based on the corresponding e-mailadress (where emailattendant=useremailattendant).
Second is it possible to get a notification if there are no matching e-mailadresses? If os how can I set this up?
Help will be very welcome,
Thanks,
Marcel
First question
Any(Select(Attendants[nameattendant],[emailattendant]=UserEmail()))
Second question
IF(
ISNOTBLANK(Any(Select(Attendants[nameattendant],[emailattendant]=UserEmail())))
,
Any(Select(Attendants[nameattendant],[emailattendant]=UserEmail()))
,
โMissing Attendantโ
)
So if it would have been blank it will put Missing Attendant in that cell. Then simply create a workflow with a creation tigger of [Coach]=โMissing Attendantโ
Hope this helps
Hello Simon,
Thanks for you quick reply and answers. The expressions works well.
Kind regards,
Marcel
User | Count |
---|---|
18 | |
10 | |
8 | |
6 | |
5 |