How to take input from user and pass it into some type into activity in later flow

I want to select date in between from of the flow and from that date my data will be filtered and accordingly i have to work.

Hi,
Please use input dialog activity to get the input from user and then store to a string variable and then proceed with your development.
When the bot runs a pop up will come which will ask you to give input to that and then once you enter the input and click enter then the dialpg box closes and bot will continue with the flow

Please refer the image

Regards,
Pavan H

When I am using type into activity the not is not typing what I am passing

Hi,
There might be something wrong with the selector of type into because when i tried its working fine for me

Inputdailogbox take input frokm user
Type into= the result of inputdailog box.

This will solve the problem

Regards,
Pavan H

I need to download Excel from one website and then perform actions to that excel.how can I do it?

Hi,
Is the excel in website like one click and will it get downloaded?

Regards,
Pavan H

Yes only one click for download and then needs some filteration in that

Hi,
Click on download and then give the location as per your requirement and then get it from that location to uipath using excel application scope and then use read range ot read and filter data table to filter as per requirement

Regards,
Pavan H

Hi,

After I did all the filteration in my excel sheet I need to send outlook email in which I need to add this sheet in body not as an attachment

Hi,
For this you need to have knowledge about HTML and then in send outlook activity check the isbody HTML and then write the code to create the sheet.

Regards,
Pavan H

Hi,

If I need to click on element that appears after click then how to automate that

I need to convert coloum type from string to int

Hi @preksha_srivastava

Try this dt.AsEnumerable.Where(Function(r) If(IsNumeric(r(“ColName”).ToString.Trim), Convert.ToInt32(r(“ColName”).ToString.Trim) > 7, False).CopytoDatatable

If all the entries are string in that column then you need to use the abuve one, you can try the below one

dt.Select(“Convert(ColName,System.Int32)”)

Let us know if these 2 helps

No it’s not working.please help

Hi @preksha_srivastava,

It is working fine for me, please attach the screenshot of your workflow or send the workflow if possible we will look into it and try to solve the isuse

Regards,
Pavan H