enumeration name is coming instead of caption in mendix export

0
Hi All, I came across an situation while i take export using "XLSReport” Module. but its not taking enumeration caption of the values. it is exporting Enumeration Name of the values. Ex: Enumeration => Current_Status(                             1. Name: _new, Caption:New                             2. Name:_1, Caption:1                        )   Export is containing (_1,_New) instead of (1,New) Any Help ?  
asked
2 answers
2

Hi Vijaybir,

I forked the excel exporter on github and added functionality to parse your values with a microflow. 

When you create your columns there is an option to choose a microflow now. 

 

The microflow needs to have one string parameter and needs to return a string. 

Here is an example: 

https://modelshare.mendix.com/models/e8624994-24a1-4ea8-97e9-7a96f1a4c8ae/parse-microflow

 

Here is a link to the test project on github. You can export the module from that project. 

https://github.com/austinmcnicholas/ExcelExporter

 

 

I’ve submitted a pull request so its possible that this feature might be added.

 

 

Hope this helps!

answered
0

Hi vijaybir singh

 

I found this thread in the forum. You might want to try this?  

https://forum.mendix.com/link/questions/85651

 

Hope it works!

 

answered