Announcements
Hi,
This behavior usually occurs because the variable picker {x} in Copilot Studio only shows variables that are available in the current scope and have been explicitly created or assigned earlier in the topic.
{x}
In your case, the values from the Adaptive Card (such as chassis and ingredients) are defined as Adaptive Card input IDs, not automatically as topic variables. Because of that, they may not appear in the {x} selector even though the card is returning them in the submission payload.
chassis
ingredients
To make them available as topic variables, you can explicitly assign them after the Adaptive Card step.
For example, add a Set variable step and map the submitted values:
Topic.chassis = turn.activity.value.chassis Topic.ingredients = turn.activity.value.ingredients
Once these values are stored in topic variables, they should appear in the {x} variable picker and can be used in conditions or other nodes in your topic.
Also note that variables created inside certain branches (for example inside a specific condition path) may not appear in other branches due to scope rules.
Hope this helps.
This is a common issue in Microsoft Copilot Studio and is usually related to variable scope or initialization.
👉 Why variables don’t show in {x}:
The variable is not initialized earlier in the flow It’s defined in a different scope (e.g., topic vs global) The step is executed before the variable is set
👉 Quick fixes:
Make sure you set the variable first (use “Set variable value”) Try changing it to Global variable, then switch back Refresh or reopen the topic (sometimes UI sync issue) 👉 Tip: Variables in Copilot Studio are order- and scope-sensitive, so define them early and in the correct scope.
In short: initialize the variable first and check its scope—then it should appear in {x}.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 277
11manish 206
sannavajjala87 156 Super User 2026 Season 1