We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Enter range in a formula

DanielCarro
8 - Asteroid

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

 

2 REPLIES 2
Felipe_Ribeir0
16 - Nebula

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.

DanielCarro
8 - Asteroid

Hi Felipe,

 

Thank you very much it worked

Labels
Top Solution Authors