Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Quick question, I am trying to get the max value from multiple counts/freqs.I tried something like the below but it doesn't work.
Any ideas?
= Max(
Count(field1),
Count(field2),
Count(field3)
)
Regards
Revlin
Try
= RangeMax(
Count(field1),
Count(field2),
Count(field3)
)
That works, thanks