Afternoon All,
I have below flow that i need to trigger when i have selected 'Done' in a SharePoint list. I have created the flow as i thought it should be but i return an error - I have the condition that if 'Compose' = Done get Email address and then if all is Yes send email to that user. Can anyone suggest what i have done wrong in this flow?
Any Help thanked.
Thanks
Solved! Go to Solution.
Hi @JasonLane,
It looks like there is a leading space character in front of the word Done.
Can you try is equal to ' Done' instead. Try the expression below:
string(' Done')
Or the other way around. Use the trim to trim the leading space character:
trim(outputs('Compose'))
Hi @JasonLane,
It looks like there is a leading space character in front of the word Done.
Can you try is equal to ' Done' instead. Try the expression below:
string(' Done')
Or the other way around. Use the trim to trim the leading space character:
trim(outputs('Compose'))
@Expiscornovus Well that makes me feel silly - You are 100% right there was a space. I have amended and its resolved no need to use Trim just need to see better 🙂 Thanks
User | Count |
---|---|
88 | |
40 | |
23 | |
20 | |
16 |
User | Count |
---|---|
130 | |
50 | |
48 | |
35 | |
26 |