I keep getting an Assign Faulted exception. How do I fix this?
filteredData = sampleData.Select(“Age<40 And Income>'40k”)
I keep getting an Assign Faulted exception. How do I fix this?
filteredData = sampleData.Select(“Age<40 And Income>'40k”)
That didn’t work.
The exception is “cannot find column [Age]”
I’m wondering if this has something to do with the Write Line
sampleData.Rows(0)(“Name”).ToString
I got it to work. There were spaces in my csv file. Thank you!