Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I've been trying to work out average turnover for a group of companies based on a the most recent date available, but there's an error in my set analysis somewhere and I'm hoping someone can point it out! Any and all help would be greatly appreciated
=Avg(
{<Date={$(=Max(Date))}>}
Turnover)
Many thanks
try putting the expression in a varable :
=Avg(
{<Date={"$(Variable1)"}>}
Turnover)
or add double quotes:
=Avg(
{<Date={"$(=Max(Date))"}>}
Turnover)
try putting the expression in a varable :
=Avg(
{<Date={"$(Variable1)"}>}
Turnover)
or add double quotes:
=Avg(
{<Date={"$(=Max(Date))"}>}
Turnover)
Thanks Ioannis - double quotes worked perfectly