How can you get past DataColumn.Expression

  • Thread starter Thread starter G
  • Start date Start date
G

G

I have a calculated column I need to create but because of the formula used,
I cannot use the
DataColumn.Expression property. Is there a way of creating a calculated
column that gets its value
from a function instead? I thought a typed dataset would work but I couldn't
get it working.

Any ideas please.
G
 
You can create a column and manually set each value based on a function, but
that's a lot of work and you constantly have to refresh/recalculate.

Can you post your code and what you want the expression to evaluate to...you
can do a heck of a lot with Expression and can probably get what you need.

HTH,

Bill
 
Back
Top