java - Format of thousands to export Excel - DynamicReports -


i'm using dynamicreports 4.0 , i'm having 1 problem export number , decimal values in excel. values appears in text format , need values appears in numbers format , decimals in format "#,###.##".

i need values in title , not working:

horizontallistbuilder hlb = cmp.horizontallist();  hlb.newrow().add(         cmp.text(1000).setpattern("#,###.##") );  componentbuilder<?, ?> componentbuilder = hlb; 

i hope can me.

thanks lot

hlb.newrow().add(         cmp.text("1000").setpattern("#,###.##") ); 

Comments

Popular posts from this blog

javascript - Feed FileReader from server side files -

oracle - pls-00402 alias required in select list of cursor to avoid duplicate column names -

c++ - Qt: when can I access dynamic properties from qtcreator? -