Dear All,
I am building a workflow and need to take a specific action depending on whether the current version is a major or minor version. Kindly let me know how to acheive this.
Regards
BK
Hi,
the method I use is adding an Regex activity to Check the current version field.
Use the expression: \d*\.0 and choose for match the expression.
The outcome will be True for the major versions and false for minor versions.
Good luck!