Forum Discussion

sam_nik12345's avatar
sam_nik12345
Helper II
4 years ago
Solved

date error

my data looks like below: month value jan'18 1 feb'18 1 mar'18 1 apr'18 1   Here monh column is in text type and when I try to change to date type, I get all errors. How do ...
  • amitchandak's avatar
    amitchandak
    4 years ago

    sam_nik12345 ,  Try the other option suggested

    Column = DATEVALUE("01-"& left([month],3) & "-" & RIGHT([month],2) )