Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need to create a formula where my requirement is sum(Sales) / first record from 'Sales' field.
Can any one suggest me how to find the first record value from chart expression.
Thanks in advance.
hi
use 'top' keyword.
sum( Sales ) / top( sum( Sales ))
HTH
Ravi N.
Use =fieldvalue('Sales',1)
Thanks