Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join 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.

Reply
ANDRII_SAV1971
Regular Visitor

Dynamic file name of export

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

3 REPLIES 3
ANDRII_SAV1971
Regular Visitor

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

uzuntasgokberk
Super User
Super User

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.

uzuntasgokberk_0-1732604163487.png

 



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.

Anonymous
Not applicable

Hi @ANDRII_SAV1971 

 

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.

 

vxuxinyimsft_0-1732602876664.png

 

vxuxinyimsft_1-1732603123551.png

 

If you need to modify many files in batches, you can put them into the same folder and use PowerShell to modify them uniformly.

vxuxinyimsft_2-1732603590754.png

 

vxuxinyimsft_3-1732603755283.png

 

# 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.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.