How to select date from calendar wizard. For one application date has to be chosen from teh calendar as target

the user can select any date from the calendar. How can teh date be used in another field inside the target screen.
Could see examples related excel only. Not for directly selecting date from target and use it in target in another field. Any help pls.

@lakshmisudha.shanmugam

You can use get text activity to get the date from the application then convert it as per format of destination site and use type into activity

These can be used to convert date from one format to another

Cdate("DateString").ToString("MM/dd/yyyy")

Datetime.ParseExact("DateString","MMM, dd yyyy",System.Globalization.CultureInfo.InvariantCulture).ToString("MM/dd/yyyy")

cheers

Thanks Anil. But how can I know which one date the user is picking from the calendar which has multiple dates (one month dates) . It is going to be a dynamic selection from user side.

@lakshmisudha.shanmugam

I believe after selection the date would be shown as text in some place on the web page we can get the date from that item

cheers