Skip to main content

Math

Math Units

These are the common math units available throughout FileFlows.

All Math units are case insenstive so you can use MB or mb

UnitDescriptionExampleActual
kbpsMultiples the value by 1,0005Kbps5000
mbpsMultiples the value by 1,000,00010mbps10000000
kbMultiples the value by 1,0005KB5000
mbMultiples the value by 1,000,00010mb10000000
gbMultiples the value by 1,000,000,0005gb5000000000
tbMultiples the value by 1,000,000,000,0005tb5000000000000
kibMultiples the value by 1,0245KiB5120
mibMultiples the value by 1,048,57610mib10485760
gibMultiples the value by 1,073,741,8245gib5368709120
tibMultiples the value by 1,099,511,627,7765tib5497558138880

Math Operations

OperationDescriptionExampleInput Result
=Matches if the value equals the specified number=5true if input is 5
<=Matches if the value is less than or equal to the specified number<=5true if input is ≤ 5
<Matches if the value is less than the specified number<5true if input is < 5
>Matches if the value is greater than the specified number>5true if input is > 5
>=Matches if the value is greater than or equal to the specified number>=5true if input is ≥ 5
!=Matches if the value does not equal the specified number!=5true if input is not 5