How can I select Date-Month-Year

Thanks in advance.

Hi @Manju_Reddy_Kanughula ,

Check this below link,

Hope this may help you :slight_smile:

1 Like

@Manju_Reddy_Kanughula

Check if type into works …

If not try checking if set attribute can be used …if there is a backend value where we can set the date

Cheers

In addition, might be good if instead of picking the date from the calendar view, you can write on the field with either Type Into activity (I’d try with simulate) or Set Text.

if it’s possible, then you can prepare the date in a DateTime variable, convert it to the desired format using .ToString("dd/MM/yyyy") - based on the image - and then just write the value in the text field.

Hope it helps!

HI @Manju_Reddy_Kanughula

Check whether you can type it that field if you can means you can directly use type into activity there

and type

DateTime.ParseExact(inputDateString,{"dd.MM.yyyy","MM/dd/yyyy hh:mm:ss"},System.Globalization.CultureInfo.InvariantCulture,System.Globalization.DateTimeStyles.None).ToString("dd/MM/yyyy")

Regards
Sudharsan

Hi thanks for your replays.

I Need select manually, typeinto activity is not working.

image

@Manju_Reddy_Kanughula

Did you try with set attribute activity?

Cheers

@Manju_Reddy_Kanughula

or
Try with SET Text Activity.