S
Sjaakie Helderhorst
Hello,
I want to create a Dataview which contains, grouped, the first 2 characters
of a cell-value.
I tried (SQL-Server background):
dv = New DataView(ds.Tables("Product"), _
"distinct left(artcode, 2) group by artcode", _
"artcode", _
DataViewRowState.CurrentRows)
Can someone explain me how to achieve this?
Thanks!
I want to create a Dataview which contains, grouped, the first 2 characters
of a cell-value.
I tried (SQL-Server background):
dv = New DataView(ds.Tables("Product"), _
"distinct left(artcode, 2) group by artcode", _
"artcode", _
DataViewRowState.CurrentRows)
Can someone explain me how to achieve this?
Thanks!