Form, data, drive

How can I make it so that a file that I upload in a form is saved in a different folder (direction) based on the content of another previous field in the form?

 

 

Solved Solved
0 4 78
1 ACCEPTED SOLUTION

In the image /File folder path  setting of the file column, you could define the conditional path based on the previous field content something like

IFS ([Previous Field]= "Folder_A" ,CONCATENATE("/","Folder_A","/"),
       [Previous Field]= "Folder_B" ,CONCATENATE("/","Folder_B","/") ,

        [Previous Field]= "Folder_C" ,CONCATENATE("/","Folder_C","/") 
     )

Here Folder_A , Folder_B and Folder_C are the  folders that are created in the root folder of the app folder.

Suvrutt_Gurjar_0-1673194139979.png

 

View solution in original post

4 REPLIES 4

Steve
Platinum 4
Platinum 4

Here:

Steve_0-1673193356806.png

 

Sorry @Steve : I was  typing in the reply and did not see you have already replied.

Never a problem, my friend!

In the image /File folder path  setting of the file column, you could define the conditional path based on the previous field content something like

IFS ([Previous Field]= "Folder_A" ,CONCATENATE("/","Folder_A","/"),
       [Previous Field]= "Folder_B" ,CONCATENATE("/","Folder_B","/") ,

        [Previous Field]= "Folder_C" ,CONCATENATE("/","Folder_C","/") 
     )

Here Folder_A , Folder_B and Folder_C are the  folders that are created in the root folder of the app folder.

Suvrutt_Gurjar_0-1673194139979.png

 

Top Labels in this Space