Hola Comunidad
Muchas gracias de antemano.
tengo el siguiente problema
1.- mi tabla original es la siguiente
Header 1 |
---|
MES_AÑO | No_LOTE | PRUEBA | Ene 2013 | 156 | 25/01/2013 | Mar 2013 | 157 | 26/03/2013 | Abr 2013 | 156 | 30/04/2013 | Abr 2013 | 158 | 09/04/2013 | May 2013 | 158 | 07/05/2013 | May 2013 | 159 | 13/05/2013 | Jun 2013 | 160 | 01/06/2013 |
|
para quitar el No LOTE repetido utilizo el siguiente SET análisis
IF(
SUM({$<CLAVE_DESA_PROY={'AVRH00001'},CLASEMOV_REAL= {'101','102'}>} CANTIDAD_REAL) > '1',
DATE (MIN({$<CLAVE_DESA_PROY={'AVRH00001'},CLASEMOV_REAL= {'101','102'}>} FECHA)),NULL())
y me queda la siguiente tabla
Header 1 |
---|
MES_AÑO | No_LOTE | PRUEBA | Ene 2013 | 156 | 25/01/2013 | Mar 2013 | 157 | 26/03/2013 | Abr 2013 | 158 | 09/04/2013 | May 2013 | 159 | 13/05/2013 | Jun 2013 | 160 | 01/06/2013 | Jul 2013 | 161 | 23/07/2013 | Sep 2013 | 162 | 03/09/2013 |
|
|
|
solo que al usar el above, regresa los registros que ya estaban ocultos
Header 1 |
---|
MES_AÑO | No_LOTE | PRUEBA | Above(PRUEBA) | Ene 2013 | 156 | 25/01/2013 | - | Mar 2013 | 157 | 26/03/2013 | - | Abr 2013 | 156 | - | - | Abr 2013 | 158 | 09/04/2013 | - | May 2013 | 158 | - | - | May 2013 | 159 | 13/05/2013 | - | Jun 2013 | 160 | 01/06/2013 | - | Jul 2013 | 161 | 23/07/2013 | - |
|
|
ya utilice lo siguiente:
=IF(
SUM({$<CLAVE_DESA_PROY={'AVRH00001'},CLASEMOV_REAL= {'101','102'}>} CANTIDAD_REAL) > '1',
DATE (MIN({$<CLAVE_DESA_PROY={'AVRH00001'},CLASEMOV_REAL= {'101','102'}>} FECHA)),NULL())-
above(TOTAL IF(
SUM({$<CLAVE_DESA_PROY={'AVRH00001'},CLASEMOV_REAL= {'101','102'}>} CANTIDAD_REAL) > '1',
DATE (MIN({$<CLAVE_DESA_PROY={'AVRH00001'},CLASEMOV_REAL= {'101','102'}>} FECHA)),NULL()))
alguien me puede ayudar. Saludos