Spreadsheet.App.openById stopped working with no change to code or file
See my function below. I have run this code successfully multiple times. I set up a trigger and it ran a couple of times as well. I started feeling pretty good about it so I wanted to start using this...
View ArticleWrite Word Doc (or docx) from a list of series in python
Primary Category | Comments A | Comments B | Company Apple | Good taste| I like it | ABC Company Banana | awesome | taste better than apple | XYZ Company Apple | Don't like it| it is cheap | ABC...
View ArticleVBA Indirect Data Validation
I am trying to set list validation for a cell via VBA. I'm able to use a Formula1:= when the formula is just a string, but when I try to use & to combine in variables, it's giving me a 400 error....
View ArticleExcel macro to set font on pivot charts to Arial
Hello I am trying to create a macro that will automatically update the font of the data labels on my various pivot charts on the sheet of my workbook titled Dashboard. I need to be able to have the...
View ArticleHow do I remove after a specific text and before a number, then delete...
So I'm trying to create a VBA Code where all you have to do is push a button and it automatically cuts a text string specifically and deletes duplicates then shows the results in another column.For...
View ArticleHow can I make this sub loop through a range of cells properly
I have values in this "Sample Analysis Data" sheet in the range B2:B10. For each cell in the range, the code need to looks for that value in the sheet "Meta Data". It then copies the cells in that row...
View ArticleHow can i apply multiple filter on different value columns in excel
I have 3 columns A, B & C. A has the store numbers (numbers), B has the Product item codes (numerical codes) and C has its stock levels (numbers). I want to put a first filter on "B" then a second...
View ArticleVBA Loop And Return Value If Two Conditions Met
Добро Дан,I have a For loop that is trying to see if an item ID and quantity matches the item ID and quantity in another worksheet. If those criteria are met, then I want to return the value in one...
View ArticleExcel VBA How to get a list of highest values from a column
I have a sheet where the first 2 columns have row and column addresses and the third column has integer values. I would like to extract the highest value and it's corresponding address from columns 1...
View ArticleHow to select everything to the right of multiple ranges?
Picked up some code to fix … I am trying to grab all the values to the right of a selected column ("A") for various ranges. For instance, Range1 is "A8:A10", Range2 is "A12:A16", and Range3 is...
View ArticleAble to call Property Let/Get dynamically or does each Property need its own...
I have an Excel VBA class with approx 30 diff Properties and I was hoping to avoid writing a Get/Let function for each of them, is there any way to dynamically pass the Property and value?pseudo code...
View ArticleVBA doesn't see all add-ins
If I open a blank Excel spreadsheet, open the VBA editor, and run the following:Sub x() For Each a In AddIns() Debug.Print a.Title & " : "& a.Name Next End Sub I get the following...
View ArticleIs there a way to find multiple max's and min's for segments in excel?
I have this one cylindrical machined part which has multiple grooves along the length of a straight cylinder. I scanned it along the length so I have 1000's of data points which are all the diameter of...
View Articleinclude excel in .jar
I need to know what is the best way to export excel file into my .jar code.I used GetDesktop open file statement, and that works good when I run it inside of Eclipse IDE. But when I export my code into...
View ArticleConvert text file into excel with delimiter and text formatted columns vbscript
I'd like to convert a .txt file into Excel with a VBScript. I have a character that I would like to delimit "|". I would also like to format column data as text before the text is opened. This is what...
View ArticlePython - How to replace all matching text in a column by a reference table -...
Hi I'm totally new to Python but am hoping someone can show me the ropes.I have a csv reference table which contains over 1000 rows with unique Find values, example of reference table:|Find |Replace |...
View ArticleExcel number format: scale number by ten thousand or hundred thousand
In Excel, is there a way to display ten thousand or hundred thousand as one?A comma at the end of a number format scales the number by one thousand. Two thousand with a number format of "#," will...
View ArticleFill a shape in Excel based on a percentage value?
Is there a way to format a shape in excel such that it gets filled based on a percentage value. So if I had a table with percentage values of 25%, 50%, and 75%, I would be able to get a 3 circles...
View ArticleUserform opens new workbook but is behind old workbook on screen
I have a workbook lets call it workbook A with different buttons on it. One of the buttons launches a UserForm to ask the user for some information to be inputted into a separate workbook. After the...
View ArticleHow to write robust code that will work on slower machines for resizing large...
I am working on an Excel application that creates reports from a inventory of data. This application is intended to be distributed to a large number of staff with potentially older/slower computers. As...
View Article