Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Sales_Table:
SalesID,
Date,
Status (Sold, invoiced, delivered).
I want to know how many SalesID changed from sold to delivered in a specific period.
Thanks
Hello Riadh,
Use this Expression as a Formula in a Chart
=count({<SalesID=p({<Status = {'Sold'}>}),Status = {"delivered"}>}distinct SalesID)
That should do the job.
Lukas
it works fine, but i want to use the date,
For exemple i need to display the change in oct, then decembre.
How can define the Date in that expression.