Hello to everyone,
I’m working on app of training course for my company and i have to create a UX where are showed only the employers who have the role of health and safety manager.
Thanks to all who will help me
Solved! Go to Solution.
TKS Steve, you are ever so precious!
Maybe this:
SELECT(
CORSI[DIPENDENTE],
AND(
(“RAPPRESENTANTE DEI LAVORATORI PER LA SICUREZZA” = [CORSO]),
("Enabled" = [DIPENDENTE].[STATO])
)
)
See also:
TKS Steve, you are ever so precious!
@Steve I have last question to make perfect this section of my app.
I have two company “Arancia-ICT” and “Koros Consulting”, as you can see in the following printscreen, the filed on the top [Azienda] is Arancia-ICT and i would see in the nested tables, only the employer of Arancia-ICT company and not Koros Consulting like in this screen.
On the contrary, If i go in the next slide clicking on the side arrow, I would see only the employer of the company Koros Consulting and in this case is right
How can i set this condition depending on the name of the company?
Tks a lot!
I tired with this formula but it doesn’t work
SELECT(
CORSI[DIPENDENTE],
AND(“RAPPRESENTANTE DEI LAVORATORI PER LA SICUREZZA” = [CORSO],[SCADENZA]>TODAY(),[AZIENDA]=[_THISROW],
( [DIPENDENTE].[STATO]=“Attivo”)
)
)
I solved whit this Formula:
SELECT(
CORSI[DIPENDENTE],
AND(“RAPPRESENTANTE DEI LAVORATORI PER LA SICUREZZA” = [CORSO],[SCADENZA]>TODAY(),[AZIENDA]=[_THISROW].[AZIENDA],
( [DIPENDENTE].[STATO]=“Attivo”)
)
)
Very well done!
User | Count |
---|---|
18 | |
10 | |
8 | |
6 | |
5 |