Hi All,
My scenario is to filter the below view column in appian expression rule using the two rule inputs of "date" dataype(startDate,EndDate),
We can see in screenshot, the column is of text and its in concatenated way, is it possible to filter this from appian?
Could you please help me on this.
Thanks in Advance.
Discussion posts and replies are publicly visible
you can extract the dates like this
a!localVariables( local!data:"04.01.2022 To 06.30.2022", local!Date:split(local!data," "), local!ansDate: a!map(start:todate(index(local!Date,1,{})),end:todate(index(local!Date,length(local!Date)))), local!ansDate )
Thanks for your response.
but my case is like this,local!data : "04.01.2022 to 06.30.2022; 01.01.2020 to 03.31.2020; 10.01.2020 to 06.30.2022; 07.01.2021 to 06.30.2022"