Create a report from a csv file using c#
I got a CSV file with many columns over 100 and I need to create a report
using only 4 or 5 columns.
What I did is i used a reader to read the CSV file and created an array
object to hold all the results for the 4 columns. eg. var results.
Now once this populates I want a way to create a report like in excel but
by displaying these results. I want to query the total number with
classification whether gender (one of the columns) or any other using a
query. I want to create a chart too from the same object.
Is there a way of doing this?
No comments:
Post a Comment