1

I am trying to edit the data but all data is not getting from the display screen

I created a display screen and put an edit icon on that display screen

When I click on edit icon then I want to get below issue no but I am not able to get the issue no and store in text label

Edit screen

see the below display screen

see image of display screen

I am trying to get the issueno from display screen and store it in issueno(text label)

Developer
  • 15
  • 6

1 Answers1

0

One way of doing that would be to use variables.

When you click your button to move to a different screen, you can use the Set() function to store values. Put that code before Navigate():

Set(varIssueNo, TextInputIssueNo.Text);
Navigate(NextScreen);

The function goes as Set( VariableName, Value ), where value could pretty much by of any DataType -> Text, Number, Object, ...

Then, on you NextScreen, you use the varIssueNo variable to display where you need it - a label for example.

You can join variables and Text/Numbers in Power Apps this way $"Issue Number: {varIssueNo}"

Murilo Santana
  • 615
  • 1
  • 7
  • 13