How to find recent a Text in a dynamic grid

Dear all,
I need to check if a user was added successfully. In this case, I need to confirm if a name e.g. Julio Banderas is in the grid that list all users with alphabetical order (that’s mean I don’t know where in the grid Julio will be at before add).
Is there a command or a way to do this?

Thanks.
E1000

Yes, there a a few options. See this RPA text search post.

Thanks to your answer @Plankton I end up reading the grid to a variable and check if it includes the name like: ${grid}.includes(“Julio Banderas”) == true
Thank you for guiding me.