Forum Discussion

christina_hoeglinger's avatar
christina_hoeglinger
Copper Contributor
Sep 25, 2019

Naming of attachments in Flow

I have the following question: I have created a flow to save attachments from a certain mail address to sharepoint. Now I want to name the files with flow when I save them in sharepoint.

The name of the file should be the subject of the mail, but only part of it (the mails are always named the same since they are autogenerated from a system). The subject of the mails is like this:

text text 11849850 - text

Now I want the file that is saved on sharepoint only to have the number that is in the subject line as the name. I think this should be possible with functions but I can't get it to work.

Can anybody help me with this?

Thank you!

 

  • Hi christina_hoeglinger,

     

    You can use an "Initialize Variable" action to strip out the unnecessary text and then use that variable to set the file name.

     

    Here is the code for the variable (based on your example): 

    last(split(first(split(variables('varEmailSubject'), ' - ')), ' '))
    "varEmailSubject" stores your example email subject line of "text text 11849850 - text". You will have to change it to the correct "Dynamic Content" within Flow.
     
    Here is how it looks in Flow and the output:
     
    I hope this helps.
     
    Norm
  • Hi christina_hoeglinger,

     

    You can use an "Initialize Variable" action to strip out the unnecessary text and then use that variable to set the file name.

     

    Here is the code for the variable (based on your example): 

    last(split(first(split(variables('varEmailSubject'), ' - ')), ' '))
    "varEmailSubject" stores your example email subject line of "text text 11849850 - text". You will have to change it to the correct "Dynamic Content" within Flow.
     
    Here is how it looks in Flow and the output:
     
    I hope this helps.
     
    Norm

Resources