summaryrefslogtreecommitdiff
path: root/stream.go
diff options
context:
space:
mode:
Diffstat (limited to 'stream.go')
-rw-r--r--stream.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/stream.go b/stream.go
index 1a1af24..52e65a4 100644
--- a/stream.go
+++ b/stream.go
@@ -327,6 +327,9 @@ func (sw *StreamWriter) SetRow(axis string, values []interface{}, opts ...RowOpt
}
fmt.Fprintf(&sw.rawData, `<row r="%d"%s>`, row, attrs)
for i, val := range values {
+ if val == nil {
+ continue
+ }
axis, err := CoordinatesToCellName(col+i, row)
if err != nil {
return err