You can use monent in a switch node to comapre time objects, You can tell moment the format of the input date.
$moment($$.payload."Notification Issued Date" & " " & $$.payload."Notification Issued Time", "DD/MM/YYYY HH:mm").isAfter($moment())
$$.payload."Notification Issued Date" & " " & $$.payload."Notification Issued Time"
is the same as "01/03/2024" + " " + "12:00"
"DD/MM/YYYY HH:mm"
tells moment the forrmat to expect.
$moment()
is the time/date now
example flow
[{"id":"1eedac72d8918492","type":"inject","z":"740c0c0471c21759","name":"Test","props":[{"p":"topic","vt":"str"},{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"str","x":130,"y":200,"wires":[["0ab30c38a0de477b"]]},{"id":"0ab30c38a0de477b","type":"template","z":"740c0c0471c21759","name":"","field":"payload","fieldType":"msg","format":"handlebars","syntax":"mustache","template":"Notification Issued Date,Notification Issued Time,Requirement For,Requirement Type,Status,Notification Type\n02/03/2024,08:00,08/02/2024,Test,The ESO may publish a DFS Service Requirement for 08/02/2024. This will be System Tagged. ,Anticipated Requirement Notice\n01/03/2024,12:00,01/03/2024,Test,DFS Service Requirement has been published for 01/03/2024. This is System Tagged.,Requirement Published","output":"str","x":260,"y":200,"wires":[["0a807f10f81fdd79"]]},{"id":"0a807f10f81fdd79","type":"csv","z":"740c0c0471c21759","name":"","sep":",","hdrin":true,"hdrout":"none","multi":"one","ret":"\\n","temp":"","skip":"0","strings":true,"include_empty_strings":false,"include_null_values":false,"x":410,"y":200,"wires":[["b078bc3b5270cadd"]]},{"id":"b078bc3b5270cadd","type":"switch","z":"740c0c0471c21759","name":"compare date times","property":"$moment($$.payload.\"Notification Issued Date\" & \" \" & $$.payload.\"Notification Issued Time\", \"DD/MM/YYYY HH:mm\")\t.isAfter($moment())","propertyType":"jsonata","rules":[{"t":"true"},{"t":"false"}],"checkall":"true","repair":false,"outputs":2,"x":640,"y":200,"wires":[["dc3a83c89cb11b29"],[]]},{"id":"dc3a83c89cb11b29","type":"debug","z":"740c0c0471c21759","name":"RESULT","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":600,"y":260,"wires":[]}]
moment docs Is After - momentjs.com
p.s. best to create an inject with example data, as this helps others who may not want to connect to exterior site, to help you. See how i added a templatre holding example data.