Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
lets say i have a field of number. eg total working hours in a week. so this may contain numbers like 30,43,34 and so on.
I want to display the largest and the smallest number and ofcourse it should get updated as the file gets updated.
kindly let me know the solution(s)
thanks in advance
use MAX() and MIN() function.
Hi,
For largest value
Max(filed)
For lowest value
Min(field)
could you please explain how to use it.
little details abt it
Hi,
you can use it in text object or in charts expression
for ex:
in text object : =Max(totalworkinghours)
for min: Min(totalworkinghours)
In Charts:
Max(sum(totalworkinghours))
and Min(sum(sum(totalworkinghours))
I was missing '='
now it works.
thanks