I am trying to create an indicator that will show my drone flight time from minutes (which is what it is currently in from my Survey 123 app) to hours. Per the image what I want to do is turn the minutes into hours.
I am grasping at straws on how to figure this out. Has anyone done something similar?
Solved! Go to Solution.
In the configuration settings, in the indicator section, click advanced settings and set the display text to something like:
Something like this should do it
Round($datapoint.SUM_FLIGHT_TIME_NUMBER/60,0),
Then you can also change the top text to "Flight Time in Hours"
In the configuration settings, in the indicator section, click advanced settings and set the display text to something like:
that got me to here.
Now I just need to round up.
Something like this should do it
Round($datapoint.SUM_FLIGHT_TIME_NUMBER/60,0),
Then you can also change the top text to "Flight Time in Hours"