Hi,
It looks like your flow need some changes. First, to let your flow more readable and easy to maintain, I recommend you to replace all existing Apply to each for an expression reference to your file. I know that these loops are automatically generated by Power Automate when you select the dynamic content from your Find files in a folder by path action, and it happens because your output is technically an array (a list of files), even if it contains only one file :)
You must transform your Apply to each loops into this:
For that, you can use the expression outputs('Find_files_in_folder_by_path')?['body'][0]['Id'], which will reference the Id property from your source file. For the Id of the destination file, you must use outputs('Find_files_in_folder_by_path_2')?['body'][0]['Id']. You can just paste these expressions where you are currently allocating the dynamic content from your "Id" property, in the Excel actions.
After that, add an Apply to each to loop the value property from your source file (List rows in a table action). Inside this Apply to each, allocate your Update a row action, populate it (here using the expression to reference the Id of your destination file), and set your Key value as this expression: item()['No'], similarly to what I did in my previous message.
Have in mind that you won't be able to access the No dynamic content from your List rows in a table action, as you are setting the file dynamically and, because of that, Power Automate don't know your table structure. However, using the expression mentioned above will bring you the same result.
If it still doesn't work or if the instructions are not clear, please share an image of your whole flow (so we can see clearly if your loops are nested), and I will be happy to provide you with some screens as example.
Also, I'm sharing some blog posts that I wrote about the topics discussed here, that can be helpful for providing you more details about some parts of the instructions:
Let me know if it works for you or if you need any additional help!
-------------------------------------------------------------------------
If this is the answer for your question, please mark the post as Solved.
If this answer helps you in any way, please give it a like.