Sign in to join the conversation:
I am trying to figure out the % variance between 2 numbers ($40,190,187 and $40,279,091) I just need the formula can anyone help?
Assuming you want the
subtract X from Y to get an absolute value "V"
get the MAX of "X" and "Y" [to get the greater of the two]
"V"/(MAX of "X" & "Y") [format this column as percentage ---- don't forget to increase your decimal place accuracy]
=ABS([Column2]21 - [Column3]21) / MAX([Column2]21:[Column3]21)
Ezra,
I did the calculation, but I get the value 1 instead of 100%, how can I increase the decimal place to show 100 in the formula?
Thanks for the help?
Just change the column or cell to a percentage format (next to currency format in the top toolbar)
.25 = 25%
.5 = 50%
1 = 100%
Worked Thanks
This is great; however, what if you needed to show the percentage of increase OR decrease?
we have the same question at Melody...
To see if it is an increase or decrease remove the abs( ) part of the equation. It is what makes everything positive.
=[Column2]21 - [Column3]21) / MAX([Column2]21:[Column3]21
This will allow the positive and negative values to show.
Hello, I am having a hard time figuring this out. I am new to smartsheet. I want to create this metrics table but I don't know how to create the reference formula!! Please help!
Hi Team, I am trying to build a formula to understand if an ID appears more than once in a column within a 6 month period and I would like it to return a '1' if the conditions are met, and remain 'blank' if they are not. However the below formula keeps returning an #Unparseable error. The issue seems to be with the '('…
Hello, I'm trying to pull in values across several the "Helper" columns below into the "EOY Forecast" column using a stacked "IF" statement: =IF(NOT(ISBLANK([Construction Helper]@row)), [Construction Helper]@row, IF(ISBLANK([Construction Helper]@row), [Late Helper]@row, IF(ISBLANK([Late Helper]@row), [Mid Helper]@row,…