Hi,
I am trying to set a rule
when custom field "single-stage" is checked, set custom field "Current deadline" to "Single-stage deadline"
Does not seem to work, but if I set e.g.
when custom field "single-stage" is checked, set custom field "Current deadline" to "01.01.2020"
That works....
Great that it got resolved.
Ok, the solution was to add
%Single-stage deadline
to the New value field. So the rule looks like this:
when custom field "single-stage" is checked, set custom field "Current deadline" to "%Single-stage deadline"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interestingly in the demo video for set custom field they click in to the Filed name and a list pops up. I don't get that list. Same for New value. However for example get the list for clear custom field....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmmm when I add that {{%Single-stage deadline}} to the rule it becomes
when custom field "single-stage" is checked, set custom field "Current deadline" to "{{%Single-stage deadline}}"
and it does not work still.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, so you need to do logic like:
```
when custom field "single-stage" is checked, set custom field "Current deadline" to {{%Single-stage deadline}}
```
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Geza TothThis might have to do with the "type" of the custom field. Basically you can't add text ("Single-stage deadline") to a date field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.