Context :
User input is marked as draft in the associate powerapps until it meets a certain wordcount.
Flow should send out an email reminder to users who's textbox doesn't match the wordcount.
Powerapp formula:
CountRows(
Filter(
MatchAll(
ThisItem.'Peer comment',
"(\s|\n?)*(\s|\n?)"
),
!IsBlank(FullMatch)
)
)
I'd like to count the wordcount the same way in my flow, to make sure the wordcount is consistent across both the app and the flow.
Issue is the functions I use in powerapps don't seem to exist in powerautomate.
I've seen I could use an excel spreadsheet to do the match,but that sounds overly complex.
Any suggestions ?