- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2021 11:55 PM
I am reading file and finally wanted to load data to new file with file name contains name of output file along with the datetime stamp.
Using below expression to achieve the same but getting error.
Please help.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-10-2021 12:00 AM
Your expression is lacking quotes for the string values. It should look something like this:
"empfile_" + Date.now().toLocaleDateTimeString() + ".csv"

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-10-2021 12:00 AM
Your expression is lacking quotes for the string values. It should look something like this:
"empfile_" + Date.now().toLocaleDateTimeString() + ".csv"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-17-2024 05:31 AM
Hi Team,
File reader is not evaluating date dynamically
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2024 11:53 AM
Hi Amreen
Try this
"Market_Share_rank_output_ " + Date.now().toLocaleDateTimeString() +".csv"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2024 11:55 AM
Hi Amreen
Try this
"Market_Share_Rank_" + Date.now().toLocaleDateTimeString() +".csv"
