I am new to UiPath. I have an excel with 4 columns: First name, Last Name, Age, Email. When data is read from the excel, all the columns are displayed in message log except Age which is an Integer. The error message I get is "Message: Column 'Age' does not belong to table DataTable.".Below is my code for Read Data from excel:
"Customer details"+" "
+customer.Item("First Name").ToString+""
+customer.Item("Last Name").ToString+""
+customer.Item("Age").ToString+""
+customer.Item("Email").ToString
Can you please hep with the issue pertaining to printing the Age.