Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi everybody,
I need to classified the difference between 2 dates: today and the last order date.
Ir order to do so, I was trying to use this DAX formula:
Serves Clasification =
Solved! Go to Solution.
Hi @Maricel
is this a measure or a calculated? The variable Daywithoutserve is not used. The syntax of the SWITCH statement is not correct, normally it should be SWITCH ( TRUE (), ...... however, it is not clear what are you trying to achieve by inserting the [Días sin pedir] measure into the switch statement. What is Estado?
Hi, @Maricel
[Días sin pedir] is of integer type and result of Consumo[Consumo diario en el último años]<=?? is of type boolean, so you can't compare them.
If [Días sin pedir] is the difference between the two dates, you can try something like:
Measure:
Serves Clasification =
VAR Daywithoutserve = [Días sin pedir]
VAR Status =
SWITCH (
TRUE (),
Daywithoutserve <= 30, "No servir",
Daywithoutserve <= 60, "Posible",
Daywithoutserve <= 90, "Servir"
)
RETURN
Estado
Best Regards,
Community Support Team _ Eason
Hi @Maricel
is this a measure or a calculated? The variable Daywithoutserve is not used. The syntax of the SWITCH statement is not correct, normally it should be SWITCH ( TRUE (), ...... however, it is not clear what are you trying to achieve by inserting the [Días sin pedir] measure into the switch statement. What is Estado?
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |