Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi 😛
I need you help again 🙂
I habe a table where i have three field:
An calenderweek, an id and a status --> the id can have several status.
the calenderweek is in the following format 201901, 201902 and so on.
For example:
CalenderWeek, ID, Status
201901, 1273128, Opened
201902, 1273128, Closed
201903, 1273128, Closed
201904, 1273128, Closed
201904, 121121, Opened
Now i have a chart, where i have the calenderweek as a dimension .. in the expression i want to show the id where it occured for the first time .. for example for the id 1273128 it would be on 201901 and for 121121 it would be on 201904 .. i dont know how i should realize it.
Can you give me an advice? 🙂
CalenderWeek, ID, Status
201901, 1273128, Opened
201904, 121121, Opened
Is this the result you want?
I used this expression for the following chart.
if(min(total <ID>CalenderWeek) = CalenderWeek, CalenderWeek)
right, i want it to show it in a bar chart.
Does no one has an idea?