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 at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered
hello all, i made the datapipeline while passing the source from http and used @concat('user_1',utcNow(),'.txt') expression
Solved! Go to Solution.
Firstly, in order to avoid race conditions on using utcNow in multiple places and getting different answers, I'd probably create a pipeline variable for the filename and 'Set Variable activity' it to be @concat('user_1', utcNow(), '.txt')
Then I'd use that variable as both the destination filename *and* a parameter in the Notebook activity. And then in the Notebook I'd have a parameter cell that uses the filename parameter.
So:
Pipeline
Variable setup
Set Variable activity
Copy Data Activity destination
Notebook activity
And the notebook itself
If this helps, please consider Accepting as a Solution so others can find it more easily.
Firstly, in order to avoid race conditions on using utcNow in multiple places and getting different answers, I'd probably create a pipeline variable for the filename and 'Set Variable activity' it to be @concat('user_1', utcNow(), '.txt')
Then I'd use that variable as both the destination filename *and* a parameter in the Notebook activity. And then in the Notebook I'd have a parameter cell that uses the filename parameter.
So:
Pipeline
Variable setup
Set Variable activity
Copy Data Activity destination
Notebook activity
And the notebook itself
If this helps, please consider Accepting as a Solution so others can find it more easily.
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 Fabric update to learn about new features.