Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Displaying numbers

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

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

For largest value

Max(filed)

For lowest value

Min(field)

View solution in original post

5 Replies
avinashelite

use MAX() and MIN() function.

Not applicable
Author

Hi,

For largest value

Max(filed)

For lowest value

Min(field)

Not applicable
Author

could you please explain how to use it.

little details abt it

Not applicable
Author

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))

Not applicable
Author

I was missing '='

now it works.

thanks