Enter range in a formula
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
DanielCarro
8 - Asteroid
‎12-15-2022
09:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
How do I write a range in this formula
Replace([FileName], "<List of Sheet Names>", [Sheet Names])
the range is A2:AD250
Kind Regards,
Dan
Labels:
- Labels:
- Developer
2 REPLIES 2
Felipe_Ribeir0
16 - Nebula
‎12-15-2022
09:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @DanielCarro
After this formula, you have the filename.xlsx|||sheet, right? If yes, you just need to concatenate the range like this:
[FileName] + "$A2:AD250"
Example;
output.xlsx|||Sheet1$A2:AD250
If you want to change the range dinamically (when you have a larger dataset you can have from A2 to AD400 for example), you can use the attached workflow as reference.
‎12-15-2022
09:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Felipe,
Thank you very much it worked
