代码拉取完成,页面将自动刷新
// Copyright 2017 Baliance. All rights reserved.
package main
import (
"fmt"
"log"
"baliance.com/gooxml/color"
"baliance.com/gooxml/schema/soo/sml"
"baliance.com/gooxml/spreadsheet"
)
func main() {
ss := spreadsheet.New()
sheet := ss.AddSheet()
hdrStyle := ss.StyleSheet.AddCellStyle()
hdrStyle.SetHorizontalAlignment(sml.ST_HorizontalAlignmentCenter)
lightGray := ss.StyleSheet.Fills().AddFill()
lightGrayPattern := lightGray.SetPatternFill()
lightGrayPattern.SetFgColor(color.LightGray)
hdrStyle.SetFill(lightGray)
hdr := sheet.AddRow()
hdrCell := hdr.AddCell()
hdrCell.SetString("Products")
hdrCell.SetStyle(hdrStyle)
hdrCell = hdr.AddCell()
hdrCell.SetString("# Sold")
hdrCell.SetStyle(hdrStyle)
for i := 0; i < 10; i++ {
row := sheet.AddRow()
cell := row.AddCell()
cell.SetString(fmt.Sprintf("Product %d", i+1))
cell = row.AddCell()
cell.SetNumber(float64(i + 1))
}
totalRow := sheet.AddRow()
totalCell := totalRow.AddCell()
totalCell = totalRow.AddCell()
totalCell.SetFormulaRaw("SUM(B2:B11)")
ss.RecalculateFormulas()
if err := ss.Validate(); err != nil {
log.Fatalf("error validating: %s", err)
}
ss.SaveToFile("formula.xlsx")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。