Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
fcecconi
Partner - Creator III
Partner - Creator III

Displaying images in a straight table

I am able to display an icon in my straight table, but not if I have an expression as my dimension.  I would like to use something like this

If (vSearch='Y', INSTITUTION_IMAGE, 'n/a')

I only want an icon shown if vSeach='Y'.

It works, but the text is being shown instead of the image even though I have image option representation (Info as Image) selected.

thanks

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

I think it should be something like

'qmem://INSTITUTION_IMAGE/'&INSTITUTION_IMAGE

Please check this configuration

Capturar.PNG

View solution in original post

4 Replies
Clever_Anjos
Employee
Employee

Whats the URL for INSTITUTION_IMAGE?

fcecconi
Partner - Creator III
Partner - Creator III
Author

There isn't an URL for the image.  I am using this logic

Bundle info LOAD DISTINCT

    INSTITUTION_IMAGE,

    '..\99.TOOLS\IncludeFiles\Institution.jpg' as ImageInstituion

Resident INSTITUTIONS_DIM;

Clever_Anjos
Employee
Employee

I think it should be something like

'qmem://INSTITUTION_IMAGE/'&INSTITUTION_IMAGE

Please check this configuration

Capturar.PNG

fcecconi
Partner - Creator III
Partner - Creator III
Author

Clever

thanks it worked.  I had to change the advance field setting from info as image to image.