Skip to content

Commit

Permalink
Fix bug when checkingAnalytics with only PSNUxIM tools (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-p-pickering authored Apr 4, 2023
1 parent 1fd8611 commit 59d884e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/extractRawColumnData.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
extractRawColumnData <- function(d, sheet, cols) {

if (is.null(sheet) || !(sheet %in% names(d$sheets))) {
stop(paste("That sheet could not be found: ", sheet))
warning(paste("That sheet could not be found: ", sheet))
return(NULL)
}

if (!("PSNU" %in% cols)) {
Expand Down

0 comments on commit 59d884e

Please sign in to comment.