Hi @NewDev ,
Do you want to change the display value of a Label within another control?
Based on the formula you provided, I think there is something wrong with it. Changing a attribute value of a control within another control directly is not supported in PowerApps currently.
As fixed solution, please consider save the value ("abc") into a temporary variable, and then bind this temporary variable to the Text property of the Label.
Please set the OnSelect property of the button to following:
Set(TempVar, "abc");
Notify(Label1.Text)
Set the Text property of the Label1 to following:
TempVar
Please take a try with above solution, then check if the issue is solved.
Best regards,