Posted 13 February 2020, 10:00 am EST
Hi,
I neetd to add a calculated filed inside a flexpivotgrid winform edition.
I bind the data in this way:
myFlexPivotGrid.DataSource = myDataBase.getDataSet(sqlQuery, “t”).Tables(0)
I would like to add programmatically a new column wich is calculated with a simple function
f.i. value = if(myGrid.col(10) > 0 ) ? myGrid.col(9)*100 : 0;
is it possible?
thanks