lookup()

Is it possible to join/execute both expressions in app formula?

LOOKUP([_THISROW].[ID_Ordineplus], Ordini, ID_Ordineplus, Ref_Operatore_Telefonia_id) 

LOOKUP([_THISROW].[ID_Ordineplus], Ordini, ID_Ordineplus, Ref_Operatore _Energia_id)

 

Fabio_T_0-1668509330369.png

 

Solved Solved
0 6 187
1 ACCEPTED SOLUTION

You can. Since you would be retrieving two values, you have to either concatenate them to merge them into a single value or make a list with them.

View solution in original post

6 REPLIES 6

You can. Since you would be retrieving two values, you have to either concatenate them to merge them into a single value or make a list with them.

Unfortunately I need to have this expression and not concatenate it

You are getting two values. What do you need to do with them?

I need the two values โ€‹โ€‹to use them in a deck view based on another value associated with them

EXAMPLE the main values โ€‹โ€‹in deck view are
energy and telephony
and according to them in the Summary column have either the first or the other.

Alternatively, these two expressions can be used simultaneously
 

Alternatively, these two expressions can be used simultaneously?

ANY(SELECT(Ordini[Ref_Operatore_Telefonia_id],([ID_Ordineplus] = [_THISROW].[ID_Ordineplus])))

ANY(SELECT(Ordini[Ref_Operatore _Energia_id],([ID_Ordineplus] = [_THISROW].[ID_Ordineplus])))

 

Use switch or if or ifs 

Top Labels in this Space