Hi all,
I have a Flow that is supposed to basically take the data from an excel file and push it into a SharePoint list.
When a new excel file is added to a folder in SharePoint, the data is supposed to be updated in a SharePoint list, based on the field "Mission"

Formula in the Key Value field is:
body('List_rows_present_in_a_table')?['Mission']
This is all working fine, but then when I want to use a "Get items" action with oData query like:
Mission eq 'body('List_rows_present_in_a_table')?['Mission']'
then it shows up blank.
And then I tried immediately after the "Get a row" action above to just drop the exact same formula in an "append to string variable" and same deal.
In the excel action it seems to run properly, getting the value (for e.g. 'Haiti') but in any other action it comes up blank.
Ideas?