Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1310
How to accumulate several fields of a record into one Grid column
posted
I create my schema manually for the grid. 

I am selecting the data fields with SQL in VB.NET, creating a table with this data,  and setting the datasource of the grid to this table.

I have several cost fields in my record and I want to add them all together and display them as one 'Cost' field in the UltraGrid.

Does the grid have a way to combine multiple data fields into one column and not show the individual fields that were combined?   

 

Parents
  • 37774
    posted

     You might want to look at my post in this thread.  Basically, you could likely accomplish this with a Formula on an unbound column and then set the Hidden property to true for all the columns that you don't want to see, or you could manually perform the calculations through the InitializeRow event and copy them into the unbound column.

    -Matt

Reply Children
No Data