Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
My source is an Excel file. There is only one sheet found within the Excel file and it is dynamic.
File 1 has a sheet name of: TRM215-1106217
File 2 has a sheet name of: TRM215-1113231
I put a file into a folder daily, and Power BI takes the most recent file as its source. I followed the steps here for reference: https://wkrzywiec.medium.com/getting-data-from-the-latest-file-in-a-folder-using-power-query-51dfa4b...
(as you can see in the instructions found within the link, the source is a "folder").
If I look at the Transform file section, this is what is listed there now:
= (Parameter3 as binary) => let
Source = Excel.Workbook(Parameter3, null, true),
#"TRM215-1" = Source{[Name="TRM215-1106217"]}[Data],
#"Promoted Headers" = Table.PromoteHeaders(#"TRM215-1", [PromoteAllScalars=true])
in
#"Promoted Headers"
The sheet name update is not allowing Power BI to refresh. I see that it referencing: [Name="TRM215-1106217"]. Is there a way to take the first sheet, regardless of the name?
I tried replicating previous solutions to this issue but have not succeeded. Can someone please help me? Obviously, I am new 🙄. Thank you!!!
Solved! Go to Solution.
Replace the name reference
#"TRM215-1" = Source{[Name="TRM215-1106217"]}[Data],
with an index reference
#"TRM215-1" = Source{0}[Data],
Replace the name reference
#"TRM215-1" = Source{[Name="TRM215-1106217"]}[Data],
with an index reference
#"TRM215-1" = Source{0}[Data],
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
71 | |
70 | |
38 | |
28 | |
26 |
User | Count |
---|---|
98 | |
96 | |
59 | |
44 | |
40 |