Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I have a table with the material produced with defects (ST_RECHAZOS_QLIKSENSE) .
And I have a graphic whith this expression:
sum(aggr(sum({<[PHASE(Spanish: Fase)]={'422','430','440','442'},[STOP TYPE(Spanish:Tipo parada)]=,MACHINE(Spanish:CODIGO_MAQUINA)=,[ELEMENT(Spanish:Elemento asiciado)]=,[SHIFT(Spanish:TURNO)]=>}DISTINCT [QUANTITY_REJECTED(Spanish:CANTIDAD RECHAZADA)]), [ID_REJECTION(Spanish:ID RECHAZO)]))
The field "STOP TYPE (Spanish:Tipo parada)" is from other table (MAESTRO INCIDENCIAS) but is affecting to the result of this expression.
With filter:
Without filter:
Hola, añade en el primer sum el filtro que quieres omitir
sum( {<[STOP TYPE(Spanish:Tipo parada)]= >}
aggr(sum({<[PHASE(Spanish: Fase)]={'422','430','440','442'},[STOP TYPE(Spanish:Tipo parada)]=,MACHINE(Spanish:CODIGO_MAQUINA)=,[ELEMENT(Spanish:Elemento asiciado)]=,[SHIFT(Spanish:TURNO)]=>}DISTINCT [QUANTITY_REJECTED(Spanish:CANTIDAD RECHAZADA)]), [ID_REJECTION(Spanish:ID RECHAZO)]))
Hola, añade en el primer sum el filtro que quieres omitir
sum( {<[STOP TYPE(Spanish:Tipo parada)]= >}
aggr(sum({<[PHASE(Spanish: Fase)]={'422','430','440','442'},[STOP TYPE(Spanish:Tipo parada)]=,MACHINE(Spanish:CODIGO_MAQUINA)=,[ELEMENT(Spanish:Elemento asiciado)]=,[SHIFT(Spanish:TURNO)]=>}DISTINCT [QUANTITY_REJECTED(Spanish:CANTIDAD RECHAZADA)]), [ID_REJECTION(Spanish:ID RECHAZO)]))
Thank you so much! But now I have another problem with the filter "Elemento asociado". This field is from the table "MAESTRO INCIDENCIAS".
For some values like "Acetileno" the information is disaggregated by day:
and for other values it doesn't affect the information:
Hola otra vez,
creo que es debido a que tienes una dimensión jerárquica en tus gráficos, y se da la casualidad de que para algunos valores como Acetileno solo tienes datos en un mes y automáticamente los gráficos te lo despliega en días.
Es un comportamiento correcto, depende de la necesidad que tengas tendrás que cambiar la dimensión o no.
Vaya es cierto ¿no puedo evitar entonces ese desglose cuando se da esa casuística?
Mil gracias por tu ayuda.
No, no lo puedes evitar.
Ten en cuenta que a medida que tengas más datos este comportamiento no se producirá.
Se me ocurre que podrías usar un contenedor con gráficos por meses y otros por días y mostrar uno u otro en función de si se hace alguna selección en el campo mes. Para esto tendrías que usar la función GetSelectedCount().
Muchísimas gracias por tu ayuda!