Hi, I'm making an App where a new Employee gets throught the Onboarding process and I want the Values of the Sharepoint List in a HTML table it works except for the values that are a dropdown in the sharepoint list for example if they have an car or not.
Here is my code(DataCardValue2 is the dropdown that doesn't work):
thanks for the help already.
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Onboarding-Status</th> <th> Price </th> <th> ID </th>
</tr>
<tr>" &
Concat(RB_Personal_Onboarding;//*Here is your data source*//
"<td>" & DataCardValue2 & " </td>
<td>" & Title & " </td>
<td>" & ID & " </td>";"</tr><tr>") &
"</table>"