Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
mateob
Contributor
Contributor

Formato de fechas QV

Que tal, tengo una base de datos que me trae las fechas en este formato, y yo tengo que mostralas en el formato DD/MM/YYYY. Alguna solucion?

Captura.PNG

Labels (3)
1 Solution

Accepted Solutions
Albert_Candelario

Hello @mateob ,

Thanks for posting.

Kindly have a look at Date - script and chart function ‒ Qlik Sense on Windows

you could use date(yourField, 'DD/MM/YYYY')

Cheers,

Albert

Please, remember to mark the thread as solved once getting the correct answer

View solution in original post

3 Replies
lmenendez_grupo_pinero
Contributor III
Contributor III

Hola Mateo, prueba esto:

ejemplo:
load * inline [numfecha,

42568,
45655,
41564];

load date(numfecha) as fecha resident ejemplo;

Saludos

 

Albert_Candelario

Hello @mateob ,

Thanks for posting.

Kindly have a look at Date - script and chart function ‒ Qlik Sense on Windows

you could use date(yourField, 'DD/MM/YYYY')

Cheers,

Albert

Please, remember to mark the thread as solved once getting the correct answer