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 | |
5 | |
5 |