SharePoint - Trigger: When an item is created or modified

Поделиться
HTML-код
  • Опубликовано: 2 фев 2025

Комментарии •

  • @robertredmayne8175
    @robertredmayne8175 Год назад +1

    Good Video Matt. I've used this trigger before when using a list to manage data created using MS forms. I added conditions following the trigger that was based on where it was in the process. If it was a new entry, it send emails to certain people, if it was further in the process, it send emails to different people.

  • @rymple
    @rymple 5 месяцев назад +1

    Great video Matt. I've got a question about how to trigger a flow if a particular column/field is no longer blank. Any suggestions on how to do that?

    • @MattCollinsJones
      @MattCollinsJones  5 месяцев назад

      You should be able to put a filter on the column in the settings area. It would be something like 'columnName neq null'. neq = not equals, so basically, if it's not null.

    • @alexanderschannel6198
      @alexanderschannel6198 2 месяца назад

      Hello is there a video on that thanks

  • @ashishchoudhary8683
    @ashishchoudhary8683 9 месяцев назад +1

    Matt, what exactly the compose will catch. What I mean is SharePoint list can have multiple rows changed basis the trigger time we put.

    • @MattCollinsJones
      @MattCollinsJones  5 месяцев назад

      The compose is just there for demo purposes, you can put whatever you want after the trigger.

  • @gaganhs8066
    @gaganhs8066 4 месяца назад

    Hey, good video. I had a doubt though, can we use this trigger somewhere along the flow rather than at the beginning?

    • @MattCollinsJones
      @MattCollinsJones  4 месяца назад

      That's a really interesting question. Technically yes. Although traditionally there was supposed to only be 1 trigger in a flow, the designer and engine does support multiple triggers. This is for scenarios where you want to poll for a response. Dataverse is the only confirmed data source I know that supports polling, so you might be doing something unsupported by doing it with SharePoint, but technically it does work.