using System.Data;private double? normPotValue = null;// Заполняем значение переменнойprivate void MyReport_DataSourceDemanded(object sender, System.EventArgs e){ DataSet dataSet = (DataSet)this.Report.DataSource; DataTable table = dataSet.Tables["CustomProperty"]; DataColumn column = table.Columns["Equip_NormPot"]; if (table.Rows.Count == 1 && column != null && column.DataType == typeof(double) && !table.Rows[0].IsNull(column)) { normPotValue = (double)table.Rows[0][column]; }}// Заполняем значение вычисляемого поляprivate void normPot_GetValue(object sender, DevExpress.XtraReports.UI.GetValueEventArgs e) { e.Value = normPotValue;}