Skip to main content

Im having trouble accessing newly created variables in Flow.  I have had to go back and create a flow a couple of times in order to get them to be found.  Specifically when I am trying to pull in variable fields that are obtained in Get Records into a text template and when I try to create a new Loop Variable.  Is there something Im doing wrong?

5 comentarios
  1. 28 ene 2020, 23:25

    Thanks for the video, that clears the air.

    Since your getRecord is getting ALL records this instructs flow to place it into a collection. You'll need to loop through all the records and add the fields you want into a variable.

    See video on how this can be done (no audio):

    https://www.screencast.com/t/7QbVgcKH4LVp

    I used a screen to show how the text will show up.

    Steps:

    Get record

    Loop

    -Add your collection to the loop and create a record variable to loop the records

    Assign Variable

    -Create a text variable and add the fields you want into the variable

    {!varInfo} ADD {!

    loopVar.Name

    }

    -I added the {!varInfo} ADD <br> to create a break between accounts

    Text Template Variable will house the {!varInfo} variable to display the information you want.

    Let me know if you have further questions or are unclear on some steps in the video.

0/9000