Conducting regressions on multiple measurements by ID code in excel
I have a series of data in excel in which a number of measurements over time is assigned to an ID X. Each X has different numbers of measurements and I am looking to find a way of returning the...
View ArticleHow to compare two excels for matches and differences row by row in Matlab?
In first excel, i have a spreadsheet(100x100). In second one, i have a spreadsheet which is only 1 row x 100 colums. I would like to compare second excel file with first excel for matches row by row. I...
View ArticleRuntime error 91 “Object variable or with block variable not set”
Sub FindUser() Dim ie as shdocvw.internetexplorer Dim ht as htmldocument Set ie = new internetexplorermedium Ie.visible = True Ie.navigate ("url") Do while ie.busy or ie.readystate <> 4 Doevents...
View ArticleHow to store 2D array elements in hashmap?
I have a excel sheet from which i have to read all cells and store in 2D array,which i have already done.Now I want to store these 2D array elements in a hashmap. I tried using the following code but...
View ArticleInsert the outcome of a formula using vba
I want to insert a formula in a range of cells in column P. Afterwards I want the outcome of the formula to be a hard value (so not the formula but the outcome). At the moment I'm placing the formula...
View ArticleExtracting WEB PAGE data from a hidden menu that is revealed after clicking
New to VBA and going in circles trying to extract data from a table on a webpage that only appears after it is clicked.I'm using a VBA macro within excel to pull data from a weather.com:I can...
View Article"Package should contain a content type part [M1.13]"
I am attempting to write to an Excel file however I keep getting the error:Exception in thread "main" org.apache.poi.POIXMLException: org.apache.poi.openxml4j.exceptions.InvalidFormatException: Package...
View ArticleCorrect way to offset headers while looping through a filtered list?
In the below code i'm trying to use a for loop through a filtered list. Without the offset the loop is going through each field and copying the data multiple times. With the offset its skipping...
View ArticleTransforming non-structured data (concatenated strings of text) into...
I'm trying to extract specific datapoints from string of text and have a hard time figuring out how to do so.What I need to achieve is to extract dates from a specific string. The string structure is...
View ArticleChange font size of all shapes VBA excel
I can't get this code to work - does anyone have any suggestions? Seems easy but I don't know what I'm doing wrong... thanks in advance. Edit: I have a bunch of charts with a textbox. I'm trying to...
View ArticleOpenxml We found a problem with some content in 'myfile.xlsx'
I am creating excel file using openxml.Worksheet worksheet1 = new Worksheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } }; When I add below sheetviews.SheetViews...
View ArticlePassing the result of an array formula as a range into a function
I have a simple function like sopublic function myFunc(r as range) as variant ... end function which I can happily call like so=myFunc(A1:A10) Works just fine.I wish to call the function like...
View ArticlePython: List of URLS to text list in Python (Excel)
I have a list of URLs to tweets in Excel. Is it possible to take out the text from these tweets (URLs) in Python? And later save it in the Excel sheet?I saw someone used the code below, but this is...
View ArticleSeparate words from numbers using VBA
I have a list of adresses that i need to clean up. The goal is to add a space before the numbers as shown in below examples. 16AVCHARLESDAGAULLECS10525 16 Avcharlesdagaullecs 10525 1BDHIPPOLYTEMARQUES...
View ArticleFixing excel 32 bit macro to work on 64 bit [closed]
I have attached an image of the code if you could advise that would be great. I need the macro to work for 64 bit if you could advise on how to create a pdf from an excel document using a button
View ArticleCreate a manipulated powerpivot from a powerpivot within the same excel file
I have a table added into my data model from SQL server. Now I want to perform some data manipulations to this table and store it into the same data model, besides the original table. How can I achieve...
View ArticleWhy the formulas of the web scraping are not working? [closed]
I have an excel file that looks like this: As you can see there is a list of numbers in column A. At E12 is where the problem happens. As you can see, I did a SUM function(SOMA = SUM in Portuguese). It...
View ArticleRead two columns using nested for loop
I need to read two columns it's like an excel reconciliation, I need to capture column B and column W then column B check 1 record and match this record from W column if column B record and column W...
View ArticleSearch for text that is put in a cell [closed]
So, what I am trying to do is to type a name into a cell, search down a table, and insert a row under that name. I THINK I have the row inserting figured out, but I can't figure out how to search for...
View ArticleExcel Formula multiple Index Match and Average the result
I have two index match formulas looking at another excel tab pivot dataINDEX(MATCH())+INDEX(MATCH())Both formulas have IFERROR = 0IFERROR(INDEX(MATCH()))+IFERROR(INDEX(MATCH()))And overall an IFERROR...
View Article