On Mon, 06 Jun 2011 19:31:36 +0200 Jostein Berntsen <jbernts at broadpark.no> wrote: [...] > This is quite cool, tested and it works great! I've just realized that: iif(x>1, x + " days", x==1, "1 day", "") can be replaced with the simpler: iif(x>0, x + plural(x, " day"), "") But the basic idea is good. Regards, David.