DataColumn dcTutar = new DataColumn("Toplam");
dcTutar.Expression = "urunAdet * urunFiyat";
ds.Tables["tbl_Urunler"].Columns.Add(dcTutar);
This Column added to dataset later, but the field("Toplam") is not in the table so i can't use it in crystal report.
How can i show this field in crystal report. Visual Studio 2005 and C#
Thanks
