From cfc86ea7a9c3ef8640790038ab6b1857609e9157 Mon Sep 17 00:00:00 2001 From: "DESKTOP-U434MT0\\hiro" Date: Fri, 11 Oct 2024 09:45:14 +0900 Subject: [PATCH] #231 --- src/structs/worksheet.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/structs/worksheet.rs b/src/structs/worksheet.rs index 45bdaa2c..cf291f1c 100644 --- a/src/structs/worksheet.rs +++ b/src/structs/worksheet.rs @@ -1578,7 +1578,13 @@ impl Worksheet { } // Moving or copying a section of the sheet - fn move_or_copy_range(&mut self, range: &str, row: &i32, column: &i32, is_move: bool) -> &mut Self { + fn move_or_copy_range( + &mut self, + range: &str, + row: &i32, + column: &i32, + is_move: bool, + ) -> &mut Self { // Check to ensure coordinates to move are within range (eg: moving A1 cells to the left is // impossible) let range_upper = range.to_uppercase();