There's a field called Format string that accepts java8 format strings. And there's a custom thing - if there's * character after %, multiplier operation is done first and then format is applied.
So:
%*.2f will be the value with multiplier, having 2 signs after decimal
And the same input value can be even used twice:
%*1$.2f (%1$d b)
So:
%*.2f will be the value with multiplier, having 2 signs after decimal
And the same input value can be even used twice:
%*1$.2f (%1$d b)
)