Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hola a todos, tengo la siguiente situación en un reporte TXT que me dejan en una ruta.
NOMBRE | APELLIDO | CEDULA
Camilo | Gomez | 123
Manuel | Escobar | 456
Andres | Segnini | 789
Herber | Carrero | 159
Duracion_Reporte: 00:10:00
¿Cómo puedo eliminar esa última fila para elaborar mi Dash sin ese dato "Duracion_Reporte"?.
Esa última fila varia tanto en tiempo de duración como en la posición de la fila, ya que es un reporte que genera un área aparte y me deja el archivo en una ruta de la red.
Gracias
**********************************************************
Hi everyone, I have the situation in a TXT file report that leaves me on a folder.
FIRST NAME|LAST NAME| ID
Camilo | Gomez | 123
Manuel | Escobar | 456
Andres | Segnini | 789
Herber | Carrero | 159
Report_Duration: 00:10:00
How can I delete that last row to prepare my Dash without that "Report_Duration"?
Thanks
Hi @carreromoto ,
Use the code recommended by @Anil_Babu_Samineni but replace MATCH with WILDMATCH:
LOAD
......
Where Not WildMatch([FIRST NAME], 'Report_Duration*');
Please let us know if that worked.
@carreromoto Perhaps
Load ....
Where Not Match([FIRST NAME], 'Report_Duration');
Hi, doesn't work
My code test is:
*******************************
query4_tbl_test:
LOAD
SESUNUSE,
SESUSERV,
SESUCATE
FROM [lib://cnx_File/01_Ext/HC_fileReport_202312.txt]
(txt, codepage is 28591, embedded labels, delimiter is '|', msq)
Where Not Match([SESUNUSE], 'Report_Duration')
;
STORE query4_tbl_test INTO '\\File02\APLIC\Qlik\test\01_Ext\/tbl_test.qvd';
Drop table query4_tbl_test;
****************************
Hi @carreromoto ,
Use the code recommended by @Anil_Babu_Samineni but replace MATCH with WILDMATCH:
LOAD
......
Where Not WildMatch([FIRST NAME], 'Report_Duration*');
Please let us know if that worked.
It's works... thanks 👍