I got concern on something. Lets say, if i got a column that stored a string of 1000kbps,3000kbps,5000kbps and 8000kbps. I tried to filter those string in one single column but it seems like it is not working. Whats the best option on how to solve this. I was thinking about converting those string into int32 first and then try to filter those column with anything thats greater than 1000 kbps only. Can you help me out please.
@hairil.hashimie As per my understanding you want to filter a column value which are gretter than 1000kbps. On that note first you need to split your column into 1000 int and kbps string then filter and again merge the value with kbps.
For split you can either use split or regex function.
Thank you first for your help. I have done your guide. But in instant with that, how can i applied this into excel application scope. Where i need to filter this in specific assign data table? Of which activities are best to be applied this variable. Try out filter datatble and assign this but it just print out my table headers only. Sorry as im still noobies in uipath.
Lets say if i got a column like this and have values range from 100Kbps to 800Kbps. How can i use your method to filter out values that only range from 500Kbps to 800Kbps. Using the filter data table activity seems like not working.
And if lets say while it filtering the whole column cell and it find empty cell how can i proceed to the next cell that fill with certain values without stopping the whole process of extraction?