for example my input is 0323 and i need output march-2023 (or) 03-2023
Discussion posts and replies are publicly visible
Hello ,
You can try this too, Hope it helps
local!date:"0323", local!newDate:concat(left(local!date,2),"-20",right(local!date,2)),
Hello anshikag0001,
'0323' is the resultant output. for the code you have given. May be you haven't copied the complete code here.
Pls check the output for local!newDate variable.
a!localVariables( local!date: "0323", local!newDate: concat( left(local!date, 2), "-20", right(local!date, 2) ), local!newDate ),
thanks for the answer