I need to change a datetime format on a specific report. So in timestamp column I tried using all date formats possible, but it still show date as dd/MM/yyyy. What is the porpouse of custom datetime format if it doesnt work.
Try to put 2 yy in year. It is coming for me
Hi!
Just tried here, still not coming
can you send the report name or query?
Hi
What format do you want it to have?
Kind regards,
Save and export the report to XML and then you can attach it using the "Insert" function below.
I had to format the data within the query. For whatever reason, the display settings weren't working for me either. The SWQL functions are listed here: https://github.com/solarwinds/OrionSDK/wiki/SWQL-Functions.
I was able to create a string with something like: concat(year(timestamp),'-',month(timestamp),'-',day(timestamp))
concat(year(timestamp),'-',month(timestamp),'-',day(timestamp))