The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Jul 16, 2019 09:04 AM
Hy Guys,
We’re trying to do a formula in order to create a new graph within our dahsboard. However it keeps telling us that:
=> Y-axis field “Pourcentage_retard” is not numeric
The formula that we’re using is:
=> IF(nb_intervention=0, “0”, inter_retard/nb_intervention)
I’m wondering if a need to add a formula to switch to numeric.
Thanks in advance!
Solved! Go to Solution.
Jul 18, 2019 02:51 AM
Hello ! Thanks for your help. Actually I found it. I put a string around 0 => “0”. By taking of it, now it’s ok.
IF(nb_intervention>0,inter_retard/nb_intervention,0)
Cheers.
Jul 16, 2019 09:16 AM
is inter_retard/nb_intervention a single field or two?
Jul 18, 2019 02:51 AM
Hello ! Thanks for your help. Actually I found it. I put a string around 0 => “0”. By taking of it, now it’s ok.
IF(nb_intervention>0,inter_retard/nb_intervention,0)
Cheers.