Re: Remove duplicate values from one Excel column and copy the list into a new Excel file.
1 - Use Excel Online (business) connector with Action: List rows present in a table

2 - Now read your original file using this - the output in body/value will be an array.
3 - Now add a compose action with formula:
union(outputs('List_rows_present_in_a_table')?['body/value'],outputs('List_rows_present_in_a_table')?['body/value'])
The union expression will give you distinct values from the array received in step 2.
4 - Use the Select action to pick your desired columns
5 - Write the output to your destination Excel file.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If this post or my previous reply was useful in other ways, please consider giving it Thumbs Up.