I have an issue when I try to convert my date time format to y/m/d/h/m it fails to do so
I currently have my date time format example as 1629752225700
please can anyone help out
@kembgeorge Below are the two methods:
1. using convert command:
| convert ctime(<field_name>)
2. using eval:
| eval <field_name>=strftime(<field_name>,"%Y/%M/%d/%H/%M/%S")Also, If this reply helps you, an upvote would be appreciated.