How do we check datatable column value is equal using C# using studio in the custumized break point

Hi every one,

I am trying to check values in Datatable…Can any one share your knowledge

Hi @jamuna_Eakambaram,

You can use the get row item activity.

image

Regards,
MY

Thank you for sharing this yuzuak,
But am i need to apply in break point…

regards,
Jamuna

Understood. You can use as below. Yes it is required, you can also throw it in an assign if you just want to return true false.

image

Hi,

Can you try the following expression?

CurrentRow["First Name"] != null && CurrentRow["First Name"].ToString().Equals("")

If this doesn’t work, can you share content of Studio log such as 2022-06-27_UiPath.Studio.log?

Regards,


Thank you for responding me…

Please find log and exceptions…

I tried that expression before in activity which was worked but am trying to custumize break point then it is not evaluating…

that is the issue…

Thanks
Jamuna

Hi
I tried it with activity which is working but am custumizing Break Point…so it is not evaluating…

That is the issue…here…

Thanks
Jamuna

Hi,

It seems a bug of Studio… For now, can you try the following expression?

 ((DataRow)CurrentRow)["First Name"].ToString().Equals("Gregg")

Regards,

yes it is working…
thank you!!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.