summaryrefslogtreecommitdiff
path: root/file.go
blob: a6c0ea4f1909207b3b7363bf21e6a5b3dfb1f8e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package saggytrousers

import (
	"git.gabbott.dev/george/excelize/v2"
	"fmt"
)

// Append the row `row` to the sheet `sheet` in file `file` at the given 
// index `index`. E.g. the index 42 will append the row at $A$42.
func AppendToFile[T any](file *excelize.File, sheet string, row []T, index int) {
	axis := fmt.Sprintf("A%d", index)
	file.SetSheetRow(sheet, axis, &row)
}