Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi There,
I have 2 different Folders with CSV Files for every day.
Folder A
> A-2017-01-01
> A-2017-01-02
Folder B
> B-2017-01-01
> B-2017-01-02
This files in each folder are merged together and have a relation between folder A and folder B, everything is working fine.
But the files are created everyday and I only need the last 2 weeks.
So I thought I could delete the old csv files which are not needed anymore.
But when I do that is says :
expression.error the key didn't match any rows in the table
But for me it looks like its searching for entrys that are used to be in the old csv files but I just want it do forget about the old csv files.
Is this somehow possible?
Thank you in advance.
Probably the name of an old file is hard coded in one of your queries. Prime suspect would be a query "Sample Binary", which is one of the objects created when the "Combine Binaries" functionality is used to combine files from a folder.
You can adjust that code so it points to the first (selected) file in the folder.
For instance:
SampleBinary = Source{0}[Content]
where "Source" is the name of the previous step.
This behaviour was adjusted (for new combine binaries) in the May 2017 upgrade, as follow up on an idea raised by yours truly.
Hi MarcelBeug,
sorry for the late reply.
My "SampleFile" looks like this in advanced editor (german, Quelle = source):
let
Quelle = Folder.Files("C:\perfdata"),
#"C:\perfdata\_perfdata_2017-04-05 csv1" = Quelle{[#"Folder Path"="C:\perfdata\",Name="perfdata_2017-04-05.csv"]}[Content]
in
#"C:\perfdata\_perfdata_2017-04-05 csv1"But I dont have any other previous step, so how should I do this here?
Thanks for any hint!
This interests me. Let me see if I understand your issue generically: your source file(s) name(s) is/are regularly changing (we assume the structure is always identical)...
and so are you invoking the Refresh or are you changing data source and doing a new Get Data?
So "Quelle" is your previous step and the solution would:
let
Quelle = Folder.Files("C:\perfdata"),
SampleBinary = Quelle{0}[Content]
in
SampleBinary
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 32 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |