Hello,
I would like to ask if there is a way to auto sync the fields YEAR and RELEASETIME?
So if I enter a value for “YEAR”, it automatically adopts it for “RELEASETIME”?
Thanks in advance.
Hello,
I would like to ask if there is a way to auto sync the fields YEAR and RELEASETIME?
So if I enter a value for “YEAR”, it automatically adopts it for “RELEASETIME”?
Thanks in advance.
No, there is no automatism
But you can trigger an action that copies YEAR to RELEASETIME:
Action of the type "Format value" for RELEASETIME
Format string: %year%
And in addition to @ohrenkino's advice, you could add a custom column ReleaseTime=YEAR? in the File List like that:
Value:
$if($eql(%RELEASETIME%,%YEAR%),✅,❌)
If you sort by this column, you can immediately see where the content in RELEASETIME does not match the content in YEAR.
Of course, you can choose any character you like instead of the '
', including "nothing".
Thanks you both, both were very easy and helpful solutions, I implemented them both in my workflow!