Insert formatted values as currency type while using EPPlus
问题 I am using format: type ="$###,###,##0.00" for currency and assigning the format type to the worksheet cells eg. wrkSheet.Cells[0].Style.Numberformat.Format = formatType; But this is inserted as text type in excel. I want this to be inserted as Currency or Number in order to continue to do analysis on the values inserted (sort, sum etc). Currently as it is text type validations do not hold correct. Is there any way to force the type in which the formatted values can be inserted? 回答1: Your