Hi,
I have a set of ten variables b1 … b10 and want to find the maximum value, I found the operator maxall but have not figured out how to use it when my starting point is a set of variables rather than a filter to be run on tiddlers or their fields.
So for instance I have the value of b8 via a function - similar for the other variables.
\function count80to90()
[all[tiddlers]!is[system]has:field[rating3]get[rating3]compare:integer:gt[80]compare:integer:lteq[90]count[]]
\end
<$let b1=<<count1to10>> b2=<<count10to20>> .... etc ... >
So now I want to apply maxall to b1 through to b10 in order to find the maximum integer value so that I can scale the Y axis of a bar graph.
Thanks …