Showing more columns when from a Dependent Dropdown

I have two tables.
Table1) Antraege_IT-Systeme (where all the information of the request will be saved)
Column: NAME: โ€œIT-Systemโ€/ TYPE: Text/ Valid if=Rollen_u_CSOD_Gruppen[IT-System]
Column: NAME: โ€œRolleโ€/ TYPE: Text/ Valid if=Rollen_u_CSOD_Gruppen[Rolle]
Column: NAME: โ€œGruppe in CSODโ€/ TYPE: Text

Table2) Rollen_u_CSOD_Gruppen
Column: NAME: โ€œIT-Systemโ€ TYPE: Text
Column: NAME: โ€œRolleโ€ TYPE: Text
Column: NAME โ€œGruppe in CSODโ€

The Dependent Dropdown in Table1 are working fine so far. In the form I can select the IT-System and then the Rolle (Role) according to the selected IT-System.
After selecting the โ€œRolleโ€ Role in the form - I would like to add (not as a dropdown) the information in the column โ€œGruppe in CSODโ€ from the table โ€œRollen_u_CSOD_Gruppenโ€ according to the selected โ€œRolleโ€ Role and show in the form.
I tried to change the type of the column โ€œRolleโ€ in the table โ€œAntraege_IT_Systemeโ€ to REF and then adding the formula "[Rolle].[Gruppe in CSOD]. but the reference in combination with the Dependent Dropdown seems not to work this way.
Any tip for me?

Solved Solved
0 2 168
1 ACCEPTED SOLUTION

Have you tried LOOKUP()
May be something like
LOOKUP([_THISROW].[Rolle], โ€œRollen_u_CSOD_Gruppenโ€ , โ€œRolleโ€ , โ€œGruppe in CSODโ€)

View solution in original post

2 REPLIES 2

Have you tried LOOKUP()
May be something like
LOOKUP([_THISROW].[Rolle], โ€œRollen_u_CSOD_Gruppenโ€ , โ€œRolleโ€ , โ€œGruppe in CSODโ€)

Thanks - it was exactly what I needed to do
Thanks for you great help

Top Labels in this Space