This function, will return a percentage value (0-100) from two input values acting as numerator and denominator
numerator (number): Specifies the numerator value of your percentage/fraction
denominator (number): Specifies the denominator value of your percentage/fraction
Basic format: ["percentage", "numerator", "denominator"]
In the following example, we want to return a shots on target percentage value:
e.g: "shots_on_target_perc": ["percentage", "shots_on_target", "total_shots]
Note the result will be a percentage value and will not include the '%' symbol at the end - you could do this using string interpolation as a new variable e.g. "percentage_w_symbol": "`${shots_on_target_perc}%`'"