Hi,
My Datasource (datatable) has columns with spaces in them. Can you please show me how to group by a field when they have spaces in them. The following below does not work for me. Please advise.
My Datasource (datatable) has columns with spaces in them. Can you please show me how to group by a field when they have spaces in them. The following below does not work for me. Please advise.
Dim expression1 As New GridGroupByExpression
Dim field1 As New GridGroupByField
field1 = New GridGroupByField
field1.FieldName = "Filing Country"
field1.FieldAlias = "[My Filing Country]"
expression1.SelectFields.Add(field1)
.MasterTableView.GroupByExpressions.Add(expression1)
Thanks!