Hi everyone,
Is there a work around to change the display name for the "Values " in a Progress column type?
I would like this to show other words.
Hi everyone,
Is there a work around to change the display name for the "Values " in a Progress column type?
I would like this to show other words.
Please explore following workaround.
IFS([PROGRESS 2]=“Zero”, “Empty”,[PROGRESS 2]=“Little”, “Quarter”, [PROGRESS 2]=“Significant”, “Half”,[PROGRESS 2]=“Very Good”, “Three Quarter”,[PROGRESS 2]=“Excellent”, “Full”)
In the Show_if of Progress column, you may have something like
OR(CONTEXT(“ViewType”)=“Detail”, CONTEXT(“ViewType”)=“Table”)
In the Show_if of Progress 2 column, you may have something like
CONTEXT(“ViewType”)=“Form”
The approach assumes, the user updates progress column through form view. You may needs to change suitably depending on how the progress column is updated in your app.
Edit: Minor changes in description
Amazing! you should put this under Tips and Tricks.
I believe it is very useful.
Thanks @Su