Last active
December 24, 2022 14:31
-
-
Save lparolari/d00d96391c6844c6a611ced64283facc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
round( | |
if( | |
prop("Budget") > 0, | |
if ( | |
prop("Spent") > 0, | |
prop("Spent") / prop("Budget"), | |
if ( | |
prop("Spent") < 0, | |
1 - abs(prop("Spent")) / prop("Budget"), | |
0 | |
) | |
), | |
if ( | |
prop("Budget") == 0, | |
if ( | |
prop("Spent") < 0, | |
-1, | |
if ( | |
prop("Spent") > 0, | |
1, | |
0 | |
) | |
), | |
0 | |
) | |
) * 100 | |
) / 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment