Hi I have a CSV file that changes daily for export to a different system. Trying to figure out how to drop the "day" from the first instance it appears in a line, but not the second.
CSV example:
By dropping the day off the first date, the result would look like this:
Is there any way to do this with UltraEdit? Thanks in advance.
CSV example:
Code: Select all
Item#,date1,sold,date2,PO#
ItemA,12/18/2017,375,1/22/2018,77954
ItemB,12/18/2017,60,1/22/2018,77954
ItemC,12/18/2017,105,1/22/2018,77954
Code: Select all
Item#,date1,sold,date2,PO#
ItemA,12/2017,375,1/22/2018,77954
ItemB,12/2017,60,1/22/2018,77954
ItemC,12/2017,105,1/22/2018,77954