Hello,
I want to make a dynamic colouring process in order to highlight the DELAYED_TARIH field in my query. If the date is today's date, I want it to remain red if it is a date that is not yet due, I want it to remain green.
I am waiting for your help in this regard, thank you.
SELECT
Caption AS LOKASYONADI,DetailsUrl AS [_LinkFor_LOKASYONADI],
Nodes.CustomProperties.LokasyonNo AS TEMOSNO,
Nodes.CustomProperties.TRANSPOL_HIZ AS TRANSPOL_HIZ,
Nodes.CustomProperties.GECICI_HIZ AS GECICI_HIZ,
Nodes.CustomProperties.GECICI_TARIH AS GECICI_TARIH
FROM Orion.Nodes
where Nodes.CustomProperties.GECICI_HIZ >= 1
and (Nodes.CustomProperties.Department IN
('IL E', 'HT KAPISI', 'YEDEK HAT', 'MERKEZE BAGLI LOKASYON', 'BSSS', 'ANA HAT' , 'KHK', 'DHK', 'HKK' , 'HAVALIMANI'))
order by GECICI_TARIH ASC;