Template expression

Hello!

I have a question about my template expression.

I want to get in my template the description SERVICES[Description] of a services (EnumList) and not the ID's.

Now I get only the ID's of the services stored in the Enumlist. How can I get the descriptions instead of the ID's in my template?

BOTFORCE_1-1645277347114.png

My startingpoint is the Graves table [GraveID] where I aยดhave in this table an attribute (EnumList) calles [Services].

BOTFORCE_0-1645277215724.png

Thank you

Robert

Solved Solved
0 2 66
1 ACCEPTED SOLUTION

You'll need to create an expression to retrieve the list of Descriptions:

SELECT(Services[Description], IN([ID Column], [EnumList Column Name]))

 

You can either create a column in app for this, or use it in the template as is wrapping it with the usual <<...>>

View solution in original post

2 REPLIES 2

You'll need to create an expression to retrieve the list of Descriptions:

SELECT(Services[Description], IN([ID Column], [EnumList Column Name]))

 

You can either create a column in app for this, or use it in the template as is wrapping it with the usual <<...>>

THANK YOU!!

 

Top Labels in this Space