I'm not familiar with dropbox, but you can pass variable from sheet to PowerQuery.
Lets say, you set up named range for single cell in Sheet1!A1, and named it "vUser".
Go into advanced editor in query editor and add below line right after "let"
User = Excel.CurrentWorkbook(){[Name="vUser"]}[Content]{0}[Column1],
Then you'd edit the source by concatenating path string with User variable.
Source = Excel.Workbook(File.Contents("C:\Users\" & User & "\Documents\Customers.xlsx"), null, true),
EDIT: This example is for querying Excel File, but same principle applies if you query folder etc.
In addition you can combine it with VBA to automatically update value in the named range.
Private Sub Workbook_Open()
Sheet1.Cells(1, 1) = Environ("UserName")
End Sub
Bookmarks