I had not thought about using R. Thanks for the tip...
I have the following set up...
custID.csv contains 1 column, 2 rows, 1 ID in each row.
read.csv is a blank file.
When I run your code, I get the following. Error message in bold.
> library("digest")
>
> setwd("/Users/Eric/Documents/R-Data-Files")
>
> sampleCRMdata<-read.csv(file="custID.csv", header=TRUE)
>
> sampleCRMdata$custIDHashed <- sapply( tolower( trimws( sampleCRMdata$custID ) ), digest, algo="sha256", serialize=FALSE)
Error in `$<-.data.frame`(`*tmp*`, custIDHashed, value = list()) :
replacement has 0 rows, data has 1
Do you have any recommendations?
Thanks