anmita
August 12, 2022, 8:28am
1
How can we get a particular cell text from data table?
Example
Here we have a Table suppose Employee
EmpId | EmpName | EmpDob
111 | Anil |23062000
112 | Latam | 22051990
So for example we have Anil whose dob is 23062000 so the output should just be 111
So how can we get specific Id value
Thanks in Advance!!!
Hi @anmita ,
Have you tried to use the Lookup Datatable Activity ?
anmita
August 12, 2022, 8:33am
3
Hii @supermanPunch ,
No have not tried with Look up
@anmita , Let us know what are the Input column values that you provide to get the Output Column Value.
Accordingly we can help you further with the approach.
anmita
August 12, 2022, 8:35am
5
Thanks @supermanPunch will try this approach!!!
Hi @anmita ,
You can also try the below approach to achieve the same :
EmpId (String Variable) = If(YourDT.Select(“[EmpName]='”+Yourname_variable+“'”).Count>0,YourDT.Select(“[EmpName]='”+Yourname_variable+“'”)(0)(“EmpId”),“NULL”)
Regards,
Rohith
anmita
August 12, 2022, 8:59am
7
Thanks its working with Lookup DataTable
1 Like
anmita
August 12, 2022, 9:00am
8
Thanks for the approach @rohith.prabhu
system
(system)
Closed
August 15, 2022, 9:00am
9
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.