In PowerApps, I use a Coalesce([field], Blank()) formula to pass parameters to the Flow, which sends those parameters to my SQL stored procedure. When I look at the flow as it runs, what is actually getting passed is an object that looks like.
{
"kind": 16,
"severity": 1,
"dataSourceName": null
}
Obviously, SQL is having trouble with this, since it really should just be passing a {null}... but it's getting:
sales={\r\n \"kind\": 16,\r\n \"severity\": 1,\r\n \"dataSourceName\": null\r\n}What am I doing wrong here?
Thanks in advance.