Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hola,
Por favor su ayuda, hay un archivo de excel en el cual necesito llenar las filas que se encuentran vacias. Adjunto un ejemplo:
Profesor | Asignatura | CodAsignatura |
---|---|---|
Arias Jose | termodinamica | c001 |
antropologia natural | c002 | |
Vaquero Diana | Fisica | C005 |
Quimica | c006 | |
Profesor | Asignatura | CodAsignatura |
---|---|---|
Arias Jose | termodinamica | c001 |
Arias Jose | antropologia natural | c002 |
Vaquero Diana | Fisica | C005 |
Vaquero Diana | Quimica | c006 |
Estimado David,
podrías intentar utilizando la función peek
TABLA_ORIGEN:
LOAD * INLINE [
Profesor, Asignatura, CodAsigantura
Arias Jose, termodinamica, c001
, antropologia natural, c002
Vaquero Diana, Fisica, C005
, Quimica, c006
];
NoConcatenate
load
if(len(Profesor)=0, peek(Profesor),Profesor) as Profesor,
Asignatura,
CodAsigantura
Resident TABLA_ORIGEN
order by CodAsigantura asc;
drop table TABLA_ORIGEN;
Saludos
Estimado David,
podrías intentar utilizando la función peek
TABLA_ORIGEN:
LOAD * INLINE [
Profesor, Asignatura, CodAsigantura
Arias Jose, termodinamica, c001
, antropologia natural, c002
Vaquero Diana, Fisica, C005
, Quimica, c006
];
NoConcatenate
load
if(len(Profesor)=0, peek(Profesor),Profesor) as Profesor,
Asignatura,
CodAsigantura
Resident TABLA_ORIGEN
order by CodAsigantura asc;
drop table TABLA_ORIGEN;
Saludos
Hola David, he tenido ese inconveniente y lo resolvi con el perfilador de qlikview y me creó el código: que copié a sense.