Error Occurred "Type Mismatch" whenever my macro Loop through Column A and...
Currently I am facing an issue whenever my macro loop in through Column A to search the string "Country Code:" and it return the matched string more then 15 times . An error "Type Mismatch" would...
View ArticleActiveX error in VBA code to replace words in a Powerpoint
I have a VBA code which is supposed to replace a word by another in a powerpoint. Nevertheless, when I try to run it I get the error 429 "ActiveX component can't create object" but I do not know why....
View ArticleGrails: Excel exporting .xlsx style issues, error message when opening the file
I'm using grails-excel-export plugin to export data into an Excel (in xlsx format), but I'm having issues when opening the file with Microsoft Office (no problems with OpenOffice).When I open it, I get...
View ArticleExcel Query to update a Worksheet doesnt keep formats
im trying to update a worksheet, by using queries. Now i have a problem, cause the imported Data keeps getting turned into a table , although the resource Data is not a table.Basically i want the...
View ArticleHow can I optimize my web-scraper for 40k+ links
With list of 40k links from which have to scrap emails/company names - takes forever the way I made it.All websites look the same but they are lacking id's or any proper order/classification. Thus I...
View ArticleHow to convert multiple rows to columns with labels on the first row
I need help to convert multiple rows for a table like below picture 1 to be formatted as the second picture. Is it possible to do this by a formula or what is the easiest way? I tried using a pivot...
View ArticleXlsxWriter : make a solid filled data bar
I have successfully created some data bar plot with the python module xlsxwriter by its conditional_format method. However, is it possible to specify the fill pattern of condition format within...
View ArticleHow to Import multiple XML Files into Excel with VBA without overwriting the...
I have a directory with multiple XML-Files. New XML-Files are added to the directory every day.I´m trying to import those XML-Files into one specific Excel Sheet everyday, without overwriting the...
View ArticleRead Excel checkbox from Python
I want to read data from an Excel sheet from a Python script and fill an XML file using the data read. Unfortunately the Excel sheet/form contains checkboxes and drop down lists. I was unable to get...
View ArticleGet Excel comment cell reference directly using Office.js
I need to read all the comments in an Excel worksheet with the related cell references, using Office.js.I don't know in which cells the comments are, I'm able to access to Excel.CommentCollection...
View ArticleHow to hide/encrypt Excel VBA cdo email password in code?
i use this method to send emails from Excel:Dim Mail As New Message Dim Config As Configuration Set Config = Mail.Configuration Config(cdoSendUsingMethod) = cdoSendUsingPort Config(cdoSMTPServer) =...
View ArticleIs it possible to create a button activated macro to peform an accumulative...
I'm currently trying to create a yearly total that gets added on to every time i hit a button the problem is the code is trying to loop on itself. AA5 = AA5+Z5i also need the code to affect both Z and...
View ArticleConverting Google sheets to Excel 2003 (.xls) using Apps Script
Currently, it seems Google has no way of converting Sheets to .xls format. So, I'm trying to use App Script to parse values from Sheet into a .XLS format. Here's the sample code below.var sheet =...
View ArticleJexcel - Updating an excel with data
I've tried using Jexcelto update an existing excel sheet as discussed in the Vogella tutorial.Issue here is the data already present in the existing excel sheet is wiped out with the newly written...
View ArticleVBA to take info from one sheet and copy it to other sheet
My sheet_one looks like this: 2020-01-31 A 2 B 3 C 10 My sheet_two looks like this: 2019-12-31 2020-01-31 2020-02-29 2020-03-31 2020-04-30 2020-05-31 2020-06-30 2020-07-31 2020-08-31 2020-09-30...
View ArticleExcel custom function add using VBA for trim the front and tail of the cell...
This is what I used code in VBA to create excel custom function.Sub TrimExample1() MsgBox Trim(Range("A1")) End Sub Can I convert this function to excel formula?
View ArticleSeparating Texts in a single cell into multiple cells with Excel/Excel VBA
I collected data from web scraping using python but it turns out all the review comments in one page is compiled into a single cell in excel. Is there any excel features or Excel VBA functions/codes I...
View ArticleUpdate the format of an Excel file in SSIS script task
I have an SSIS package which runs an SQL script and puts the results into an Excel file; the file at the beginning has just a header row with bolded column names.What I have found is that, no matter...
View ArticleVBA First time creating Class
I'm currently working on a VBA project. I only have experience in the basics of VBA (No OOP, just functions and subs) and C#.Today I am trying to create my first class but i run into an error.This is...
View ArticleSaveAS file and not open it
I have a file with 2 buttons, one to "Show questionnaire" and one to "Show Answers""Show questionnaire" shows a questionnaire with questions for people to answer "Show Answers" shows the answers to...
View Article