Image Ref IT Device

Hi everybody

How can when I select Image the IT Device will output the name corresponding to the selected Image.
I use Enum so I can't use the [Image][IT Device] function.
Is there any other way?
Thanks

khangLixil_0-1670376732968.png

 

khangLixil_1-1670376755437.png

 

0 3 89
3 REPLIES 3

You essentially have two choices:

  • Create a separate Devices table with columns for Image and Name, and then in the table whose form you screenshotted make the Image column a Ref type to the the Devices table. Then you can use [Image].[Name] in the App formula property of the IT Device column in your screenshot.
  • In the App formula property of the IT Device column in your screenshot, write an expression that results in the device name you want. For example:
IFS(
 [Image] = {image URL 1}, {device name 1}, 
 [Image] = {image URL 2}, {device name 2}, 
 [Image] = {image URL 3}, {device name 3}, 
 ...
)

 

khangLixil_0-1670382864935.png

I can't use it, it gives an error

Don't use the braces. That was just my way of indicating that you should substitute appropriate values in your own expression.

Top Labels in this Space