Forum Discussion
Anonymous
6 years agoNot applicable
Need help for Custom Column Formula
I've got a column with mixture of figures (eg 2,000 and 2,000 - 5,000) and i'm suppose to calculate the average of that range (eg [2,000 + 5,000]/2 = 3,500). I've tried using delimiter to spilt ...
- 6 years ago
Anonymous
try create a custom column
if [Figure 2] = null then [Figure 1] else ([Figure 1] + [Figure 2])/2
az38
6 years agoCommunity Champion
Anonymous
so, whats your business logic?
how do you want to calculate Figure_tidy if Figure2 is null?
az38
6 years agoCommunity Champion
Anonymous
try create a custom column
if [Figure 2] = null then [Figure 1] else ([Figure 1] + [Figure 2])/2
- Anonymous6 years agoNot applicable
It works! Thank you!