Splunk Search

extract only date from a date time field

surekhasplunk
Communicator

Example  i have a csv where the date is like this in the date field

Billing Start= 43774.7083333

But when i format the cell manually i see the actual date is 11/5/2019  5:00:00 PM which is correct. 

And I am using below query but not working. Can you please help to get the above correct date. 

eval date=strftime('Billing Start',"%M/%d/%Y %H:%M:%S %p")

It gives me below output

43774.708333309/01/1970 13:09:34 PM
Labels (1)
Tags (3)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The strftime function expects it's input to be in Linux epoch time format, but the Billing Start field appears to be in Microsoft's date format, which is not the same.

Convert from Excel dates to Unix/Linux dates using this formula

Unix Timestamp = (Excel Timestamp - 25569) * 86400

See https://stackoverflow.com/questions/1703505/excel-date-to-unix-timestamp for more.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...