How to use arithmetic operation in comparison operator in workflow?

I am using trigger “Accounts Collected for aggregation” to find out how many accounts were changed as a percentage to number of scanned accounts and then to compare that percentage value with default value of 30% (0.3) and if the calculated percentage is above our defined value of 3% trigger an email.

I am using below operation but it does not support arithmetic operation.

($.trigger.stats.changed/$.trigger.stats.scanned) * 100

How to do this? Is there any better way of doing this?

Hello @Amrit1897 , Unfortunately, workflows in ISC doesn’t support any arithmetic operation in workflows.

Option 1: Send email with all the values like changed and scanned account count. So that you can calculate it outside of SailPoint. But still this gona be a manual process.

Option 2: Call external calculator via HTTP request step and return the calculated value to workflow. I doubt this approach will be accepted by clients as this require calling external site (may be not secure)