Skip to main content

Is it possible to conditionally show a custom field based on Project Category?

 

If yes, how?

 

Thanks if anyone can help me out.

Hi @MR10 ,

The custom field can be made mandatory based on the value of another field in the same form. But, not sure if it is possible to show/hide a custom field based on the value of another field. would like to see options if it is possible.

Thanks,


Hi @MR10 

This may Helpful

https://docs.ifs.com/techdocs/Foundation1/040_administration/220_user_interface/020_custom_objects/040_custom_fields/020_create_custom_fields/default.htm

Regards
Shan


Hi @MR10,

Create a custom field, then use conditional formatting. 
 

 


One option is to change the logic of the custom field, or a second custom field based on the original, so that the shown value is suppressed depending on the value of Project Category.

Add something like below to the logic of the c/field:

--

    
    (Case 
when <proj_category> = 'ABC' then <value>
  else '***value suppressed***'
    end)

-

 


Feels like not possible in IEE, but I like the creativity!

Thanks for thinking along!