
Contributor
2022-05-05
08:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Labels (3)
Labels
- Subscribe by Topic:
-
Application Development
-
Client Managed
-
Layout & Visualizations
945 Views
1 Solution
Accepted Solutions

Support
2022-05-06
05:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
906 Views
3 Replies

Contributor III
2022-05-06
03:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hola Mateo, prueba esto:
ejemplo:
load * inline [numfecha,
42568,
45655,
41564];
load date(numfecha) as fecha resident ejemplo;
Saludos
908 Views

Support
2022-05-06
05:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
907 Views

Contributor II
2022-05-06
05:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
