I'm new to perl and I've already gone through a crash course on the basic of perl scripting! However, the stuff I wanna do seem to be a bit too advance for me now. (Cries in agony) I wish to do the following actions but I'm stucked at opening an .xlsm excel file. Note I have an array stored with string text.
- Open .xlsm excel file
- Search for the location of the cell that contains a string text throughout the .xlsm that matches the string text in my stored array
- Write a char into a same row but different column cell. (Example: Matched string location of cell in step 2 = K8. Write cell in F8)
- Repeat foreach of string in my array.
Linux Version: Red Hat Enterprise Linux 8.6 Thanks guys for your time reading/helping! Much appreciated!
Tried the traditional open(). (I know its wrong! I'm sorry! haha)
Excel::Writer::XLSX can write to .xlsm files. Check its
extract_vba
andadd_vba_project
methods to help make the updated file.