Skip to content

Commit b209911

Browse files
committed
ACI0105762: VP Get table range - return range instead of data range, and vice versa
1 parent 623af8e commit b209911

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Resources/scripts/commands/tables.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@
418418
if (table != null) {
419419
let r = {};
420420
if (params.onlyData) {
421-
r = table.range();
422-
} else {
423421
r = table.dataRange();
422+
} else {
423+
r = table.range();
424424
}
425425
result.row = r.row;
426426
result.column = r.col;

0 commit comments

Comments
 (0)