Search code examples
excelfilterodataazure-logic-apps

Excel connector with ODATA filter work not as expected


Sorry, I see there are some posts with ODATA filter but i found nothing here about logical Apps excel connector with an ODATA filter problem.

I have such a simple table for-Mail Adresses and in in the Logic App. I used a Excel(Business) - Connector with List rows present in a table. For reducing the amount of repsonse data, i tried to use a ODATA filter.

(endswith(Email,'@xx.de'))

and

(Email ne '')

but it didnt worked. Only after the first gap (empty cell) search will continue, further gaps will end the search. Because there are only singel filter supported I don't know a solution for that. Can anyone help me?

Expected Response real Response
[email protected]

the above 2 tables should be 1 table, but markdown shows me an error if I added the last row as extra table.

Here is my table:


Solution

  • You just need to use one filter:

    endswith(Email,'@xx.de')
    

    Do not need Email ne '' because the empty cell can also be filtered by endswith(Email,'@xx.de').

    ============================Update=============================

    My creating excel steps:

    1. new excel

    enter image description here

    2. open the excel and insert the table

    enter image description here