Dataview.Compute?

  • Thread starter Thread starter MattB
  • Start date Start date
M

MattB

I have a dataview that I've used a rowfilter with to get the rows I'm
interested in. I was planning on then summing a column in that dataview
for the results I need, but it looks like .Compute is not available for
DataViews. I think I could loop through the DataView for the same
result, but that seems so messy. Is there a similarly nice and clean way
to sum a DataView column as there is for a table?

Thanks!
Matt
 
Although Compute is not member of DataView, you can get the result by

DataviewObj.Table.Compute

HTH

Elton Wang
(e-mail address removed)
 
Back
Top