Brand Spank'n new to Power Automate.
Building a flow to loop through a SharePoint list.
After specifying the site and list name, in Get Items, the filter does not show any of the list columns :
Existing list:
Flow:
I was expecting to see the list columns in the column list on the right. (The KPI variables are ones I created above this step and NOT from the SharePoint list)
What fundamental misunderstanding do I have here?
Thx
Solved! Go to Solution.
Hello @donsthompson ,
you can use only the information that's already available from one of the actions before the current one. At the time of the 'Get items' action the flow doesn't know what it'll get, all the columns will be available only after that action.
If you want to use a Filter Query you must type it in using the column internal name on the left side, the operator, and the value inside single quotes on the right side, e.g.
Title eq 'ItemTitle'
Hello @donsthompson ,
you can use only the information that's already available from one of the actions before the current one. At the time of the 'Get items' action the flow doesn't know what it'll get, all the columns will be available only after that action.
If you want to use a Filter Query you must type it in using the column internal name on the left side, the operator, and the value inside single quotes on the right side, e.g.
Title eq 'ItemTitle'