Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
How can i create a chart in Sense that has the sum(amount), latest mydate and Age(Latest mydatedate - Now())?
thanks
bhagi
you want this in script or front end?
Use below code in script n then try
Load Prod,
Max(MyDate) as Newdate,
Sum(Amount) as Value,
Age(today(),max(Mydate)) as Age
From Source
Group by Prod;
or
in stright table:
avg(today(),dte(max(mydate)))