Hi Jeff Yu,
Data contains an Age value of 18 try this
Check the Documentation Excel Importer
Video : Excel import in mendix
Hi Jeff Yu ,
You need to use an OQL query because retrieving specific attributes directly isn't possible with a regular database retrieve action in Mendix. By default, retrieve actions fetch entire objects, but OQL allows you to fetch only specific attributes.
For Example :
SELECT Age FROM MyFirstModule.Worksheet
this query will helps you to get all the list of age are available in your table.
in the exequete oql statement use worksheet as the return entity
Hi jeffu,
The result is a list of all age values.
This is my current Worksheet. I will upload an Excel file that contains six headers, which correspond exactly to the attributes A, B, C, D, E and F. Among the headers in the Excel file, there is one named "Age". I want to first identify the attribute in the Worksheet entity that corresponds to "Age", then retrieve this attribute and loop through its data to display it.
If my explanation is unclear, please let me know. Thank you!
Hi Jeff,
Please read this blog how you can start your OQL journey.