An Azure service that automates the access and use of data across clouds without writing code.
@Ceeeee-8261 Thanks for reaching out.
Only actions are listed as documented in the Excel connector for logic app.
There are two workarounds to handle this in logic app.
- Delete all the existing rows or drop the table if you are storing the same excel sheet data for the same table. You can use sql connector to perform this operation.
- In case your table has other data, and you cannot delete all the rows/drop the table then you need to leverage the SQL connector to first to validate whether the row exists. You can use Execute a SQL query (V2) action with where condition to match all your column with the current row in the table. Using condition statement if it returns a single row then skipped it else use the Insert Row (V2) action to insert the data.
Let me know if you have any queries or concerns.