Self reference is not supported when updating the value of variable, MS Flow

A quick one, consider the following scenario in

string a=”A”;
string b=”B”;

if i want string a to have “AB”, then the simple solution would be, a=a+b.

but in Flow self reference is not supported, surely MS is working to fix it.

A quick work around would be create another variable,

for example string c; and can do as c=a+b;

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s