From 82e6a56fde93f86182036863247a84f90e800ab0 Mon Sep 17 00:00:00 2001 From: KurmithaSF4004 Date: Fri, 29 Sep 2023 18:04:45 +0530 Subject: [PATCH] Import and Export Data --- .../CollectionObjects to Worksheet/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Import and Export Data/CollectionObjects to Worksheet/NET Standard/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs b/Import and Export Data/CollectionObjects to Worksheet/NET Standard/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs index e35ddc29..93cc18a0 100644 --- a/Import and Export Data/CollectionObjects to Worksheet/NET Standard/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs +++ b/Import and Export Data/CollectionObjects to Worksheet/NET Standard/CollectionObjects to Worksheet/CollectionObjects to Worksheet/Program.cs @@ -56,8 +56,9 @@ public class Customer { [DisplayNameAttribute("Sales Person Name")] public string SalesPerson { get; set; } - [Bindable(false)] + [DisplayFormat(DataFormatString = "$#,###.00")] public string SalesJanJun { get; set; } + [DisplayFormat(DataFormatString = "$#,###.00")] public string SalesJulDec { get; set; } public Customer(string name, string janToJun, string julToDec)