File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 133133----------
134134SEQ_SPARSE : int
135135 Values:
136- 0: Continuous sequence - no gaps for missed days
137- 1: Sparse sequence - adds blank entries in index for missed days
136+ 0: Continuous rows but non-continuous sequence - skips missing days
137+ 1: All days in sequence shown - blank entries for missed days
138138 Default: 0
139139
140140Example:
141141 For three-digit format (SEQ_NOTATION=0):
142- If SEQ_SPARSE=0: Missing a day creates sequence
143- 001
144- 002
145- If SEQ_SPARSE=1: Missing a day creates sequence
146- 001
147- 002 [all other columns blank]
148- 003
142+ If SEQ_SPARSE=0: Missing a day shows as gap in sequence
143+ Row 1: 001
144+ Row 2: 003 (sequence skips 002)
145+ If SEQ_SPARSE=1: Missing day included with blank data
146+ Row 1: 001
147+ Row 2: 002 [not skipped but other columns blank]
148+ Row 3: 003
149149
150150 For date format (SEQ_NOTATION=1):
151- If SEQ_SPARSE=0: Missing a day creates sequence
152- 2025‑01‑01
153- 2025‑01‑03
154- If SEQ_SPARSE=1: Missing a day creates sequence
155- 2025‑01‑01
156- 2025‑01‑02 [all other columns blank]
157- 2025‑01‑03
151+ If SEQ_SPARSE=0: Missing a day shows as gap in sequence
152+ Row 1: 2025‑01‑01
153+ Row 2: 2025‑01‑03 (skips 2025‑01‑02)
154+ If SEQ_SPARSE=1: Missing day included with blank data
155+ Row 1: 2025‑01‑01
156+ Row 2: 2025‑01‑02 [not skipped but other columns blank]
157+ Row 3: 2025‑01‑03
158158
159159Notes:
160160 Setting SEQ_SPARSE=1 helps with accountability by making missed days
You can’t perform that action at this time.
0 commit comments