Forum Discussion
No Dynamic Content Available
Active_Array in your screenshot you've shown the get changes action but you haven't shown what your trigger is which needs to be when an item or a file is modified. Is that what you've used?
Rob
Los Gallardos
Microsoft Power Automate Community Super User
RobElliott : Apologies, I should have included the trigger in the previous post.
Yes, the "When a file is created or modified (properties only)" trigger is what the action is currently linked to:
- Micca0815Jun 21, 2022Iron Contributor
Active_Array
You could make use of the following expression, which would return the list item IDtriggerBody()?['ID']
- NZHP_Office_ManagerApr 19, 2023Copper Contributor
Hi,
Very new to all this, total beginner.
I'm having a similar problem with a variation.
Some of the dynamic content for my trigger Add a row to a table is available, but the rest isn't?
They just aren't in the drop down options at all.
How do I create the dynamic content? You mention adding values? what does that mean?
Thank you
- Micca0815Nov 02, 2023Iron ContributorThere might be a few situations where the dynamic content list is not reflecting all attributes, like e.g. a nested apply to each.
You might want to tackle those either by using
a Parse JSON action for the response
(run the get response once, copy the output for the schema from example, repeat in case the questionnaire gets modified, dynamic content will be available, but null values could become tricky to deal with),
or put the response into a compose action.
For the latter you can then point to each response value with the expression outputs('NameOfComposeAction')?['WhichEverValueName'],
but it would not show up as dynamic content, though.