Sort Date

Hi,

I have a csv data read into a datatable in which I want to sort the data with a column1 of date in it.

Column1, Column2, Column3
5/23/2018 , akka , king
8/17/2017 , dog , monkey
3/18/2017 , cat , queen

I need to sort the column1 according to the descending order of date like as below.

Column1, Column2, Column3

3/18/2017 , cat , queen
8/17/2017 , dog , monkey
5/23/2018 , akka , king

How to do this in uipath, is there any logic?
Thanks in advance

@Kamal_Kumar Refer this

@Sob My date is in the type of text mm/dd/yyyy so sort data table is not giving me accurate results, can you suggest any better approach.
Thank you for replying.