xlwings || excel visiblity issue
i am opening an excel with the help of xlwings for some computation and i have set the visible False but still user can see the excel is opened and also it takes time to open and do the required. i...
View ArticleUse VBA to suppress Analysis Toolpak Histogram function messege
Question overview: I am using Excel VBA histogram function from 'Analysis Toolpak' to generate approximately 25 histograms automatically. When Histogram graph is generated, it is placed on top of cells...
View ArticleExcel VBA .Find ignores commas
I have a code that searches for a value in column A. the values are project numbers like 4545 and 3605. Sometimes a project does have multiple sub-projects. A subproject is determined as example:...
View ArticleOpen Excel and load a .vsto add-in using Python
I want to open the Excel application using Python. I have tried using the method below however it doesn't load add-ins by default. I have seen solutions for .xla based add-ins. Unfortunately the add-in...
View ArticleDisable Custom VSTO Add-In on all Excel Instances Except Specific Filename
VSTO Excel application developed in C# with a bespoke Ribbon on each Excel instance. This Add in is installed on a client machine and works on every excel application opened. This causes issues when...
View ArticleExcel table default value and data validation without VBA
I have a table in Excel for tracking projects. Whenever I create a new row for the table I'd like it to auto-populate one column that the project has "Not Invoiced". I would ALSO like that this column...
View ArticleKeeping comments in cleared range using excel vba
Does using .ClearContents in excel vba remove comments from cells? I'm clearing data from a large spreadsheet, but I have comments in a few cells that I want to keep. What can I use instead?
View ArticleAlternating coloring groups of rows in Excel
I have an Excel Spreadsheet like this id | data for id | more data for id id | data for id id | data for id | more data for id | even more data for id id | data for id | more data for id id | data for...
View ArticleHow can I stop Excel processes from running in the background after a...
No matter what I try, Excel 2013 continues to run in the background on Windows 10 no matter what commands I throw at the end of my PowerShell script. I've tried adding all suggestions I've found to the...
View ArticleButton execution from Userform throwing Subscript out of Range error
Button for the code was previously present in the Excel Sheet, tested and executed successfully. Now I have shifted that button to a Userform, when executed I get an error subscript out of RangeWhen...
View ArticleCreat Monthly Reports from IBM CAA
Is it possible to create an automatic Monthly Report form IBM CAA as PDF and send the result file as Email ? I have tried Excel but it need a lot of user involving and I was wondring if there is such...
View ArticleApplication :1004 error while setting vlookup formula to a cell where i need...
I get 1004 error at .Cells(i, 202).Value = fValue of f at time of error is: =IF(ISNA(VLOOKUP($BA$2, [Input2.xlsx]Sheet2!$A$2:$E$35, 3,),VLOOKUP( $BD$2, [Input2.xlsx]Sheet2!$B$2:$E$35, 2,),VLOOKUP(...
View ArticleReturn specific value based on string in text
I have one Excel file where every year has a specific number against it. I want to automate the process and create a column which will return the stored value based on the year mentioned in string....
View ArticleVBA Excel Get Cell Address or Value by Row containing "X" and Column containg...
The main goal is to get the value of the Cell where Row that contains "NQQ" intersect with Column that contains "Revenue", i highlighted the Cell with yellow color.Till now i just succed to get the row...
View ArticleExtracting ONLY the Parameters from GA UTM URLs
I would like to extract the parameters from tracking URLs but I only want the parameters. I found this very helpful formula to extract them from URLs. This formula solves the problem best for me except...
View ArticleDelete single column from multiple xlsx sheets using python
Can anyone know that how to delete same single column from multiple xlsx sheet using python?After that those sheets save it to same path.
View ArticleCombine 2 Ranges into an Array and filter
I have 2 ranges, both with the same number of rows, different number of columns (which can vary).Range 1: A, 1, 1, 1 B, 2, 4, 8 C, 3, 9, 27 D, 4, 16, 64 Range 2: 1, 1 16, 64 81, 256, 1024 I want to...
View Articlecopy specific data from multiple workbooks
Im new to VBA and I have been trying to create a program to copy specific range from multiple workbooks having data in sheet 2 to a master workbook sheet 2 .**COPY Condition: the column range will be...
View ArticleHow to enter Data in Internet explorer textbox using VBA excel
I'm a complete newbie for Excel VBA, but what I'm trying to accomplish is enter a text into a text box, whose code is<input name="txt_invoiceno" type="text" maxlength="16" id="txt_invoiceno"...
View ArticleVisual Basic - for..next and formulas
I need to make Excel VBA script which inserts formula depending on cells values. My current version returns only FALSE valueFor i = 1 To 10 Step 1 If Cells(i, 2).Value > Cells(i, 1).Value Then...
View Article