Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Necesito que el usuario ingrese una fecha y que el reporte se filtre desde '2022-03-02' esta fecha que seria constante y la variable que seria la que ingresa el usuario, en mi carga de datos tengo un campo fecha, hay alguna forma de crear una variable que almacene la fecha que ingresa el usuario ? para luego usar el campo fecha y la variable para mostrar los datos en ese rango de fechas ?
El datepicker no me permite preseleccionar y bloquear la fecha inicial por lo que lo he descartado como solución.
You can use the following measure (if the name is correct)
Sum({<date={">=$(='02/03/2022') <=$(vDate)"}>}FISICA_DISPONIBLE)
Also pay attention to the date format, I don't know if we use the same, but you can change it to suit yours.
Hello, you can use a 'variable input' chart in the Input Box where the user will choose the desired date. And you use this set analysis in your measure.
{<date={">=$(='02/03/2022') <=$(vDate)"}>}
Intente hacer lo que enviaste, peor no encuentro la variable vDate donde puedo declarar la variable.
You must create the vdate variable first. You can leave it blank when creating.
¿Cómo creo la variable?
Once created, you can use it in the variable input
Genial ya pude crear la variable, ahora siguiendo la lógica que explicaste anteriormente. como puedo hacer q todo el grafico reaccione a este rango de fechas.
Por ejemplo este kpi.
You can use the following measure (if the name is correct)
Sum({<date={">=$(='02/03/2022') <=$(vDate)"}>}FISICA_DISPONIBLE)
Also pay attention to the date format, I don't know if we use the same, but you can change it to suit yours.
Realice todo lo indicado;
Pero el kpi trae un valor de cero
El KPI q esta arriba es el que estoy probando y el de abajo es el que trae el valor total.
Is your field considered a date field?µ
And the DateFormat variable in the main is in the date format you're using?