-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrimuovi.R
41 lines (31 loc) · 934 Bytes
/
rimuovi.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
library(tidyverse)
library(readxl)
library(writexl)
library(lubridate)
library(stringr)
copyBarcode <- function(df) {
df %>%
select(Barcode) %>%
pull %>%
writeClipboard()
}
Raccomandate <- read_excel("Raccomandate.xlsx")
Raccomandate$Arrivo <- ymd(Raccomandate$Arrivo)
Raccomandate$Scadenza <- ymd(Raccomandate$Scadenza)
copyBarcode(Raccomandate)
fileToLoad <- file.choose(new = TRUE)
RaccBuste <- read_excel(fileToLoad)
RaccBuste$Esito <- ifelse(!is.na(RaccBuste$`Data Altre Azioni`),
RaccBuste$`Data Altre Azioni`,
RaccBuste$`Data Rec.`)
inFiliale <- RaccBuste %>%
filter(is.na(Esito))
esitate <- RaccBuste %>%
filter(!is.na(Esito))
esitate %>% count()
inFiliale %>% count()
Rimangono <- Raccomandate %>%
anti_join(esitate, by="Barcode")
Rimangono %>% count()
Rimangono %>%
write_xlsx("Raccomandate.xlsx")