|
|
|
ถามเรื่อง format number ที่ส่งออกเป็นไฟล์ excel ต้องการให้เป็นตัวเลขมีจุดทศนิยม 2 ตำแหน่ง |
|
|
|
|
|
|
|
ตั้งค่าใน cell ของ Excel เลยก็ได้นะ
|
|
|
|
|
Date :
2010-11-10 14:03:25 |
By :
babyprogrammer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมอยากให้มันออกมาเป็นรายงานเลยอ่ะครับไม่ต้องไปตั้งค่าอะไรอีก
|
|
|
|
|
Date :
2010-11-10 14:10:22 |
By :
GhostLocal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้
Code (VB.NET)
.NumberFormat = "##,##0.00"
ตังอย่างครับ
Code (VB.NET)
With xlWorkBook.ActiveSheet.Cells(10, 16)
.Value = dt.Rows(0)("TOTAL").ToString()
.BORDERS.Color = RGB(0, 0, 0)
.NumberFormat = "##,##0.00"
.Font.Name = "Tahoma"
.Font.Size = 10
.MergeCells = True
End With
Go to : ASP.NET Export Database to Excel Report/Print Format (Excel Application)
|
|
|
|
|
Date :
2010-11-10 14:37:52 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ได้แล้วครับ
|
|
|
|
|
Date :
2010-11-10 17:10:43 |
By :
GhostLocal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|