Dataview.Compute?

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
 
G

Guest

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

DataviewObj.Table.Compute

HTH

Elton Wang
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top