Making 2 Dependable drop downs
Sub Test() 'drop down list Dim status(2) As String ' create array with definite size and value Dim language As Variant Dim team As Variant status(0) = "Not Ready"' assign value status(1) = "Ready"...
View Articleconditional remove duplicates
I have a list where i want to remove the duplicate where "Date of Termination (Work)" column is the latest or null. sample data Id No Name Surname Date of Employment (Work) Date of Termination (Work)...
View ArticleUnable to move Boxplot chart successfully
I have been looking around the web and have since gathered some codes that will create a box plot and move it to another worksheet. However, the following code is able to create the box plot but unable...
View ArticleVBA - "Close"/UN_DropDown a combobox list?
I'm working on a dynamically filled Excel combobox, but sometimes when I update the list inside, the display gets crazy.As I fill and check the list, I use these :to adjust the number of visible...
View ArticleHow to edit specific excel sheet
I have a maser sheet containing multiple sheets. I want to editing DATA sheet shown in the image and I can edit but when i edit the DATA sheet then the data and pivot tables and styling and formatting...
View ArticleExcel VSTO Add-in
I am developing a VSTO Add-in for Excel and I want to add a new CustomTaskPane (userAdminTaskPane) to each new opened Excel document by this code and make it visible:public static void...
View ArticleI want to replace excell cell value using python
Below is my excel file data and i want to replace b column values with some other values but without using cell refence like B2 instead of that i want to get cell index dynamically based on the values...
View ArticleNot able to draw the images inside large excel file in batches
Actually, I am generating a large excel file with image's urls and after that I try to draw the images (in batches) in a column (Column 1 with blank entries) using image url (Column 2 with image url)...
View ArticleDuplicating a worksheet
I'm trying to set up a spreadsheet that duplicates the previous worksheet into a new tab daily.I have it set up to create a new worksheet and rename it daily, but I can't figure out the duplication...
View ArticleDetermine when cell value is within date range
I want to send an email when cell value is within Date and Date + 7.My code only works for one condition so it is either Date or before Date or after Date.There is a Syntax Error in the code below:For...
View ArticleHow to copy each column and paste each of them into different pp slides VBA
Data to be copiedI need help for a VBA code to copy each column into different slides. For example, O4:O33 into the first slide then P4:P33 into the second slide, and so on...
View ArticleUpload file via FTP from Excel VBA
Need to upload a file (file.txt) to a server (ftp.server.com) from Excel VBA. (does not have to be necessarily FTP, just need to be able to put the file there and get it back, and I've got a server on...
View ArticleUnknow error when open a exported excel file
I got an unknow error when open an excel file. Is there any one had faced this error before?
View ArticleLoad image, and populate listbox by selecting dependent combobox
I'm trying to load img from folder path, and populate listbox by dependent combobox selectionso far I have this code attached belowPrivate Sub ComboBox3_Change() Private Sub UserForm_Initialize()...
View ArticleHow to pass Value from excel to IE
I am trying to pass value form excel sheet to IE textbox. While i run that procedure display error 438 Object doesnot support this property and method. My code isSub open() Dim str_val1 As Object Dim...
View ArticleApply conditional formatting to table - EXCEL
I want apply conditional formatting on a specific table column but i need some help because i do not manage to do so.Table name= tblMiCColumn name= FlagThe following formula imported on Conditional...
View ArticleSQL query for text analysis
I want a SQL query which I have to apply in a text column containing multiple sentences in English. Now suppose I want to retrieve all the data or rows which contains the word 'hanging' and 'issue' and...
View ArticleHow to send email with Excel when date in column equal or smaller than...
I have three columns: A) Enterprises B) Email address matching the enterprise C) Yes or NoIf there is a YES in column C, I want to send a message to the email address in column B.This is what I have....
View ArticleAdd input message via data validation to all cells that are selected
I expect an Input Message with a title when a cell is clicked.I can't achieve this with the VBA code that I have.Sub SelectAllNonBlankCells() Dim objUsedRange As Range Dim objRange As Range Dim...
View ArticleInsert an Object into an Excel Worksheet
I have an Excel Worksheet that i would like to insert an Excel document. I can do this manually by the following steps;Insert / Text / Object / Create From File (tick Display as Icon) / Browse. I then...
View Article