How to convert a string field to a date field

I'm surprised I haven't seen this before. Maybe I'm overlooking something obvious :)

Although you're using a different locale to me, you're using the same date format as I do in the UK, dd/MM/yyyy. I get a slightly different error (on QGIS 2.16.1) but it doesn't like that date format.

You can get around this by creating a short python script in the function editor tab of the expression editor.

  • Go into the function editor tab in the expression editor
  • Create a new function ("New file" button)
  • paste the following into the code window. You may get indentation errors, so manually re-indent with spaces if needed
  • click on "Load" button to save the changes
  • switch back to the expression tab
  • look under the python heading, should now see a function called parse_date_dmy

from qgis.core import *
from qgis.gui import *
from PyQt4.QtCore import QDate

@qgsfunction(args="auto", group='Python')
def parse_date_dmy(fromval, feature, parent):
    return QDate.fromString(fromval, 'dd/MM/yyyy')

If you use QGIS 3.# and get an error about PyQt4, then instead use PyQt5, i.e. replace line 3 with

...
from PyQt5.QtCore import QDate
...

You can then enter an expression like so, using your field name :-

parse_date_dmy("mydate") 

If all is well, you should see something like this...

enter image description here


I don't know what it was like back in 2016, but as of QGIS 3.10, this is implemented in in the available functions in QGIS in the expression editor or the field calculator. The documentation on the right (in the field calc dialog) gives you the solution of:

to_date( "MyDateFieldNameWithDatesAsStrings" , 'dd/MM/yyyy' )

(whitespace are optional) and hit "OK". Adapt the "format" to the one present in your attribute table. For example, if your dates look something like 07.3.03, the correct format for that would be dd.M.yy*. Pay attention to capitalization, as the symbol m stands for "minutes" and M stands for "months".

  • This is not a format anybody should use. If you get a file with that format, please talk to the sender's superior. This will not stand!