Problem making new action

Hello.

I want make a Lector of QR, and when Lector QR see the ID, go to link with a actions.

And depend of ID, one function or other function.

If i put 

LINKTOVIEW([Buscador].[Columna1])

All good. But i need change the function depend of ID. Maybe "LinktoView" or "LinktoForm" or "LinktoFilteredView".

 

ifs(
OR(
[ID]=1,							
[ID]=5),
LINKTOVIEW([Buscador].[Columna1]),
OR(
[ID]=2,							
[ID]=3),
LINKTOVIEW([Buscador].[Columna2])) ---> Its a sample. I want Linktoform or anything. (Sample)

If i put it, in the text of the "Expresion Assistant" say it:

IFS(
....ANY of these statements is true:
........1: (The value of column 'ID') is equal to (1)
........2: (The value of column 'ID') is equal to (5)
....APP(  ---------------------------------------------->I dont want this
........The concatenation of all these text values (  -->I dont want this
............"#control="  ------------------------------->I dont want this
............ENCODEURL(  -------------------------------->I dont want this
................The value of 'Columna1' from the row referenced by 'Buscador'))
....ANY of these statements is true:
........1: (The value of column 'ID') is equal to (2)
........2: (The value of column 'ID') is equal to (3)
....APP(    ------------------------------------------->I dont want this
........The concatenation of all these text values ( -->I dont want this
............"#control=" ------------------------------->I dont want this
............ENCODEURL( -------------------------------->I dont want this
................The value of 'Columna2' from the row referenced by 'Buscador')))

Can you explain me why this make it?

....APP(
........The concatenation of all these text values (
............"#control="
............ENCODEURL(

 

0 1 76
1 REPLY 1

Please post your actual expression not a sample, and explain the desired behavior vs the current one. Thanks.

Top Labels in this Space