Excel to generate quotes & track inventory
I have a question, more about possibilities. We are currently tracking inventory for a specific project through Excel, and we are also generating quotes for this project through Excel. There is a set...
View ArticleWhy does the call from a sheet slow down the entire routine?
If I run this code from within the VBA IDE, e.g. press F5 on the Test routine, my connection and parsing the xml happens almost instantly.Sub Test() Sheet1.Range("4:20000").Clear Dim con As New...
View ArticleHow to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
How can I use regular expressions in Excel and take advantage of Excel's powerful grid-like setup for data manipulation?In-cell function to return a matched pattern or replaced value in a string.Sub to...
View ArticleWhen I run vba macro nothing happens?
I have the below code in my excel file, but when I run it nothing happens and it doesnt come up in window either. GetDataFromADO() 'Declare variables' Dim objMyConn As ADODB.Connection Dim objMyCmd As...
View ArticleWhy is my VBA ComboBox blank until I type
I created a simple UserFormComboBox with a list of items:Private Sub CourseComboBox_Change() CourseComboBox.List = Sheets("Course Lists").Range("G2:G15").Value End Sub When I run the UserForm the drop...
View ArticleCombining IF Formulas in Excel with Variable Ranges [duplicate]
I'm a beginner here. I'm looking to essentially run formulas down in a separate column taking metrics from another column into the formula. Since each month of data is 4000 rows long, The range upon...
View ArticleA more accurate and more efficient fuzzy searching algorithm
I have been researching fuzzy match / search algorithms across the internet. I have tried a couple of solutions.The only that gave somewhat accurate results was from Mr. Excel...
View ArticleRandomly select data from multiple sheets in Excel [closed]
I have data of various companies arranged in different sheets date-wise.How can I select randomly any number of sample (say 10) where data can be extracted from any sheets with the condition that there...
View ArticleIs it possible to read Excel data from specific cells using PX.Data.XLSXReader?
Is it possible to read Excel data from specific cells using PX.Data.XLSXReader? I'm trying to read a specific column from an Excel file using Acumatica's XLSXReader library but I have been unable to...
View ArticleAdding Source File Name to First Column of Workbook (VBA)
I'm fairly new to using VBA, but I currently have a code written that does the following:Searches within a folder, all excel files which contain a specific worksheet, and outputs in to a master sheet.I...
View ArticleChoosing Specific Tab on Internet Explorer by number because i have similar...
i need to make this code work by changeing number of the tab without title filtring Sub accessExistingIEBrowser() On Error Resume Next boolWindowFound = False Set objShell =...
View ArticleGetting data by checking the boxes on the web page
I would like to get data for certain date ranges from a website. The site address is "http://arsiv.mackolik.com/Canli-Sonuclar". There are boxes in this address that should be selected or not selected....
View ArticleVBA: Range.Formula Returns Application Defined or Object Defined Error
For my code, I am trying to find the difference between an objects value from two different days. Sub GoingBack() numberCube = InputBox("Which file are we going back to?") numberYest = numberCube - 1...
View ArticleSplit Rows in Power Query
How would I be able to group rows evenly between a a dynamic number of a cell?1000 rows, need to split into 10, and for each row it will like the belowIndex | Group 1 | 1 99 | 1 101 | 2 200 | 3 500 | 6...
View ArticleVBA copy formula into last row with data (based on different column) not working
I cant get this run even after trying all sort of dim possibilities. I want to pull down the formula results of col M only until the last row with data based on column G (which would be row 23). The...
View ArticleHow can I make my request asynchronously without importing a new file
Hello I am trying to perform a soap call but sometimes the response is thousands of record. I don't want excel frozen while it is processing the responses but every example I've seen require importing...
View ArticlePadding a specific number within a string [closed]
I am looking for some help on a formula to pad a specific number within a string.A typical data set would be like the following:FD50-U-98-1 FD152-U-2-10 DEM-FD50-U-98-15 DS987-U-XD1498-1...
View ArticleHow to automatically apply specific math calculation to active cell? [closed]
I would like to apply a specific math calculation to the selected cell automatically rather than doing it manually. Specifically, I would want to take the active cell value such as =B1 and multiply it...
View ArticleSet Excel VLOOKUP to dynamic external file
I've built an excel file that runs a VLOOKUP with an external file. The external file changes daily, and the naming/location of the file is dynamically set without a standard convention. So I've put...
View ArticleCompare two excel tables based on unique key using formula
I have two tables with same column names in excel which are getting data from two different sources based on certain calculations. We need to compare data between those two tables based on ID column...
View Article