How can I get an item out of a data table by value using blueprints?
I have a data table that looks like this:
I want to be able to get PetOpposite value by Pet and not by row name.
If this was SQL, I would do something like this:
Select PetOpposite
From DataTable
Where Pet = ‘Snake’
I would want the ‘Mongoose’ to return.
Thanks in advance!