Hi All,
How do I assign a string variable to datetime variable ?
Hi All,
How do I assign a string variable to datetime variable ?
Hi @uio
You can try with this expression
DateTime.ParseExact(StringInput.ToString,"dd/MM/yyyy",System.Globalization.CultureInfo.InvariantCulture)
Check out this tutorial video
Blog
Regards
Gokul
Hi @Gokul001 ,
I have an Excel input file.
Conditions :-
The result should be like this
You can do it directly using excel formula and formatting the cell as dd-MMM-yy
=IF(B2="no",IF(B1>NOW(),NOW(),B1),IF(B1>NOW(),B1,NOW()))
We you can write the formula(Write Formula/Write cell) using UiPath and also format(Format Cell Activity) the cell using UiPath…
cheers