Hi, yesterday I created a PowerApp with 2 text labels and 1 textinput. Please see screenshot of the tree view in Power Apps.

Below are the codes:
Label1: Text = First([@PowerBIIntegration].Data).ProjectTrackerID
Label1_1: Text = First([@PowerBIIntegration].Data).'Project ID'
TextInput1: Default = First([@PowerBIIntegration].Data).'Meeting Notes'
The intent is when user selects a project (identified by ProjectTrackerID) in the PowerBI table, the PowerApp will filter on the project and display the project's ProjectTrackerID, Project ID, and Meeting Notes (which can be edited). Everything seemed to work with the PowerBI integration.
Today, I added one more critical field - Project Name - to the PowerApp, using the same code as I did for Project ID, i.e.
Label2: Text = First([@PowerBIIntegration].Data).'Project Name'
However, this time, the Project Name didn't appear, only the ProjectTrackerID, Project ID, and Meeting Notes.
What did I do wrong with the Project Name that it doesn't show up?
Please see screenshot of the Power Apps as it appears in the PowerBI report.

In the screenshot, "450" is the ProjectTrackerID, "PR212954" is the Project ID, and the big empty box below is supposed to be the Meeting Notes. The Project Name is supposed to show up below the Project ID, but as you can see, it doesn't.
Thanks!!!