Hi @Anonymous,
You could ask three questions to request input for the company, e-mail and token. After that you can use that input and check it in a flow action.
However, I don't know if I would use an Excel for this. As far as I know, the list rows present in table action does not support multiple filters. However, you could workaround that by using a couple of Filter Array actions
Below is an example
This is a very basic setup. You might want to include a couple of condition actions to check the results of each filter action, for some error handling.
1. Topic example

2. Flow which uses the input to check the Excel file
Expression used in the second Filter Array action
@or(or(equals(item()['Token1'], triggerBody()['text_2']), equals(item()['Token2'], triggerBody()['text_2'])), equals(item()['Token3'], triggerBody()['text_2']))
Expression used in the Result variable
if(equals(length(body('Filter_array_-_Token')), 0), 'No match found', 'Match Found')
