Excel-ish functions on power table

Is there any way to fire an event on cell(s) selected? I’d like to put a footer at the bottom of some tables and do a sum, avg, and stdev on just the selected data. Looks like none of the mouse events work except the ones in the extension functions. An onMouseReleased function would be handy.

Thanks

Nevermind. These three events fire after you drag and select cells.

selectedRows
selectedColumn
selectedColumns

evtList = [“selectedRows”]
if event.propertyName in evtList:
print “Do Stuffs”