Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi
Power BI Builder Report version 15.7.1813.16
How to change the file name at the time of export
I want to generate a file name with a date value
Example - Report_20241012.xls
Help me, please
I want to implement this for the network version
So that the user can immediately receive the specified file
This is not set dynamically - ACCEPTED !
How can I contact the system developers?
thanks you
Hello @ANDRII_SAV1971 ,
You can use powerautomate. There is a node export to file for Paginated Reports. When you added export to file for Paginated Reports. You need to add another actions below export to file for Paginated Reports such as Current Time and last node needs to be addded send an email or to the related sharepoints.
Best Regards,
Gökberk Uzuntaş
LinkedIn: https://www.linkedin.com/in/g%C3%B6kberk-uzunta%C5%9F-b43906198/
Medium: https://medium.com/@uzuntasgokberk
İf this post helps, then please consider Accept it as solution and kudos to help the other members find it more quickly.
Do you need to automatically generate file names when exporting paginated reports? Based on my testing, I'm afraid it is not currently supported. But you can modify it manually.
If you need to modify many files in batches, you can put them into the same folder and use PowerShell to modify them uniformly.
# Set the directory containing the exported Excel files
$exportDirectory = "C:\Path\To\Your\Exported\Files"
# Get today's date and format it
$currentDate = Get-Date -Format "yyyyMMdd"
# Get all Excel files in the directory
$excelFiles = Get-ChildItem -Path $exportDirectory -Filter *.xlsx
# Rename files by adding the date
foreach ($file in $excelFiles) {
$newName = "Report_$currentDate" + "_" + $file.BaseName +$file.Extension
Rename-Item -Path $file.FullName -NewName $newName
}
If I misunderstood your needs, please feel free to correct me.
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
5 | |
4 | |
3 | |
2 | |
1 |
User | Count |
---|---|
7 | |
6 | |
6 | |
4 | |
3 |