I had a separate help request for a flow that sends a daily email listing all documents in a Sharepoint folder modified in the past 24 hours formatted in a table with clickable links. The solution has worked quite well. I am using Recurrence-Get Files (Properties Only)-Select-Create HTML Table-Send an Email(V2). 
 
It returns something that looks like this:
 
	
		
			| Sharepoint Folder Name | Name | Owner | Modified By | Modified | Link | 
	
	
		
			| board | Agenda 1- | ABC | SRT | 2025-10-28T01:01:50Z | Link | 
		
			| committee 1 | Agenda | DEF | XYZ | 2025-10-27T20:27:18Z | Link | 
		
			| committee 1 | Minutes of Meeting | DEF | SRT | 2025-10-27T22:56:56Z | Link | 
		
			| committee 2 | Test Report 1 | ABC | XYZ | 2025-10-27T15:39:58Z | Link | 
		
			| committee 2 | Test Report 2 | ABC | XYZ | 2025-10-27T15:50:39Z | Link | 
		
			| committee 2 | Test Report 3 | GHI | XYZ | 2025-10-27T15:49:55Z | Link | 
		
			| board | Test Report 4 | DEF | XYZ | 2025-10-27T15:37:11Z | Link | 
		
			| committee 3 | Test Report 5 | ABC | SRT | 2025-10-27T15:49:21Z | Link | 
		
			| committee 4 | Test Report 6 | ABC | SRT | 2025-10-27T15:48:44Z | Link | 
	
 
 
While the above sends a sort of "master list" of modified files, I now need to create similar email alerts for individual Sharepoint files. For example, from the above table, I will need a separate email to go out daily to ABC notifying them of modifications made to Test Report 1 in the committee 2 folder,  Preferably, I'd like to include multiple specific files in the same email also in a table with clickable links so that a document owner can receive one email with all of their assigned documents that were modified in the last 24 hours. For example, Owner ABC's email would look like this:
 
	
		
			| Sharepoint Folder Name | Name | Owner | Modified By | Modified | Link | 
		
			| board | Agenda 1- | ABC | SRT | 2025-10-28T01:01:50Z | Link | 
		
			| committee 2 | Test Report 1 | ABC | XYZ | 2025-10-27T15:39:58Z | Link | 
		
			| committee 2 | Test Report 2 | ABC | XYZ | 2025-10-27T15:50:39Z | Link | 
		
			| committee 3 | Test Report 5 | ABC | SRT | 2025-10-27T15:49:21Z | Link | 
		
			| committee 4 | Test Report 6 | ABC | SRT | 2025-10-27T15:48:44Z | Link | 
	
 
while DEF's email will be:
 
	
		
			| Sharepoint Folder Name | Name | Owner | Modified By | Modified | Link | 
		
			| committee 1 | Agenda | DEF | XYZ | 2025-10-27T20:27:18Z | Link | 
		
			| committee 1 | Minutes of Meeting | DEF | SRT | 2025-10-27T22:56:56Z | Link | 
		
			| board | Test Report 4 | DEF | XYZ | 2025-10-27T15:37:11Z | Link | 
	
 
Is this doable? I tried to apply the same logic as the "master list" solution but I couldn't figure out how to drill it down to specific files. My attempts at using Select and Create HTML Table with Get FIle Metadata failed as they don't recognize the dynamic content from that action. If the chart with multiple files is not doable, I can settle for a separate email for each individual file. It's just not ideal.
 
My second question relates to both my first flow and this. I have it set up to send daily at 7 am which it is doing even if there are no updates so it returns a blank email. Is it possible to set it so that it will send the email only when there are modifications? This isn't a big deal, more of a inbox clutter reducer.