Hi Community,
I need some help with updating the static data used from an excel.
I have a powerApp that takes data both from powerBI ([@PowerBIIntegration]) as well as a static excel data. The static file gets updated every month and is manually updated. So when being in use on a PowerBI dashboard, this app takes name of the person selected on the dashboard through PowerBIIntegration data, filters the name from the static data, and returns the name of courses completed by that person in a html text.
Below is the code for the html table.
"
<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>
" & "
<tr style='background-color:#efefef' >
<td> Course Name </td>
</tr>
" & Concat(Sort(Distinct(Filter(Table1_1,Full_Name in [@PowerBIIntegration].Data.Full_Name), FullNameOfCourse), Result),
"
<tr>
<td>" & Result & " </td>
</tr>
"
) & "
</table>
"
But when I am updating the static data in exact same format with exact same names for the columns and changing table name (Table1_1) in the html text, it is giving the errors as in the screenshot.
Can anyone please suggest where I am getting wrong?