Hello,
Good Day!
I having the values in the field Data As shown below
2022-05-31 10:18:09 emea
|
2022-05-31
2022-05-31 10:18:14 apac
|
2022-05-31
2022-05-31 10:18:20 us
|
I want to show the time zone as well like if emea comes after time it should show CST
Output should be as follows:
2022-05-31 10:18:09 CST emea
|
2022-05-31
2022-05-31 10:18:14 HKT apac
|
2022-05-31
2022-05-31 10:18:20 EDT us
|
Please help me on this
Thank you in Advance
Veeru
Thanks for the help i got the results
Hi @Veeru
if it resolved your issue can you please accept the solution it might help others in the group
note:- If it helps karma is appreciated/if it resolves acceptance as solution is appreciated
hi @Veeru
you can try the below query
|makeresults |eval new = "2022-05-31 10:18:09 emea"
|append [|makeresults |eval new= "2022-05-31 10:18:14 apac"]
|append [|makeresults |eval new= "2022-05-31 10:18:20 us "]
|eval new=replace(new,"emea", "CST emea")
|eval new=replace(new,"apac", "HKT apac")
|eval new=replace(new,"us", "EDT us")
If it helps karma is appreciated/if it resolves acceptance as solution is appreciated