Jump to content

I wish display the "Display Name" (drop down property) in the table but currently i only able to display the expression....anyone know the tricks?


Chee Kheong Wan

Recommended Posts

Hello Chee

There is currently no way to display the selected value from the dropdown other than the value itself. Please vote for this idea

As a work around, you can create a calculated column like this:

case "${yourDocProp}"
   when "YourExpression 1" then "S1"
   when "YourExpression 2" then "S2"
   else "${yourDocProp}"
end

The else statement will show the expression if the expression is not found on any other cases in case there is a typo. You can write your expression within the when clause in uppercase and wrap"${yourDocProp}" with Upper("${yourDocProp}")

case "UPPER(${yourDocProp}")
   when "YOUR EXPRESSION 1" then "S1"
   when "YOUR EXPRESSION 2" then "S2"
   else "${yourDocProp}"
end

 

Link to comment
Share on other sites

  • 7 months later...

Hello Jose

I tried what you proposed in one of my project but it seems not working easy when expressions already contain other property values.

For instance i have this expression in a property expression: 

  Sum(IF([Column1]="${Property1}",${MapMetricMS},0))/Sum(${MapMetricMS})

if i use it in the CASE/WHEN with "", it does not keep it as text and it kinda mess around, any idea?

It works fine if there are no reference to other property values.

Thanks in advance for the support!

Vincent

PS: i tried to look at the idea you suggested to vote for it but unfortunately it's not working anymore, shall I create a new one?

 

 

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...