Hi All,
I am building a very basic flow that initialises a variable to find the current time, then depending on that time it will perform some later actions (including sending a message in teams). My issue is that after I have passed through the condition, the variable no longer shows up in the dynamic content of the teams message - what am I missing? Can't quite find anything online but apologies if this has been posted elsewhere.
Easy work around is just paste the expression in but I will eventually have a fair few variables so would like a nice way to track them!
Thanks!
Solved! Go to Solution.
Hi @Mattcr,
Sometimes it can be hidden in the Dynamic content list because it is a mismatch of type with the field you want to add it to.
Like you already said, easiest workaround is to just add it as an expression via the expression tab.
variables('Current Hour')
Hi @Mattcr,
Sometimes it can be hidden in the Dynamic content list because it is a mismatch of type with the field you want to add it to.
Like you already said, easiest workaround is to just add it as an expression via the expression tab.
variables('Current Hour')
Hi @Expiscornovus, that's done the trick thank you!
I imagine because I initialized it as an integer but the teams message expects a string that's why it might be hidden.