Skip to content

Commit

Permalink
[pt] allow slicer variables to contain whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMarvin committed Nov 8, 2023
1 parent 08d437a commit 98f82d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/class-workbook.R
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,7 @@ wbWorkbook <- R6::R6Class(
sel <- which(pt$name == pivot_table)
cid <- pt$cacheId[sel]

uni_name <- paste0(slicer, cid)
uni_name <- paste0(stringi::stri_replace_all_fixed(slicer, ' ', '_'), cid)

### slicer_cache
sortOrder <- NULL
Expand Down

0 comments on commit 98f82d6

Please sign in to comment.