Data filter against ref values

Hello,
I would like to get a filter on a column of a table against the value (Ref) of another column of this same table.

In table 1 I have Key + two columns

3X_f_c_fc0a1cd9faaf8c3060039d34598335a24bbd285f.png


In table 2 I have too Key + two columns

  • Columns “Client/BSI” = Ref ==> Table 1 [Nom Société]

When I select my client, I want only the affiliated subsidiaries to appear in column 2


For the “Subsidiary” column I tried the following formula but it does not work because it shows me all the values, regardless of the “Client / BSI” selected

3X_9_2_92aee74eeaff8f132f2701f18e87d4e3c2bf893b.png

3X_c_a_ca1a27705fd6b43bffb43082ece25bbe962e6b18.png

I tried other formulas referenced in tutorials but they don’t work either.

Could you help me please?

thank you so much

0 3 233
3 REPLIES 3

Steve
Platinum 4
Platinum 4

Try:

IFS(
  ISNOTBLANK([Client/BSI]),
    SELECT(
      Clients[Nom Filliale],
      AND(
        ISNOTBLANK([Nom Filliale]),
        ISNOTBLANK([Nom Societe]),
        ([_THISROW].[Client/BSI] = [Nom Societe])
      )
    )
)

Thank you so much Steve but it’s note ok

When I enter your formula, I no longer have any values displayed in “Filiale”

3X_2_e_2e4028ed9a06b657552dd306f48e9889078afb0f.png

Thank you so much Steve

Please contact support@appsheet.com for further help with this.

Top Labels in this Space