Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
I'm assuming you're able to get the data into a DataTable. This should push you in the right direction. [code] DataTable dtExcelImport = MethodThatGetsThatExcelImportTable(); //If you use regex, declare it up here so it doesn't get created a bunch of times string sDataType = string.Empty; foreach (DataColumn dc in dtExcelImport.Columns) …
The End.
anoncodemonkey