How to Programmatically Break on All Errors?
What I want to do is set a flag to go from the Error Trapping option "Break on Unhandled Errors" to the option "Break on all Errors" (VBA menu: Tools > Options > General tab):The reason for this...
View ArticleI need to ignore blank cells in an excel 2007 MIN array but I keep getting 0's
Here is the array I have: {=MIN(IF('APRIL 2011'!E3:E999<>"",'APRIL 2011'!E3:E999 *('APRIL 2011'!E3:E999*('APRIL 2011'!D3:D999='APRIL TOTALS'!A2))))} It still returns zeroes with empty cells!
View ArticleSee if any values in array exist in a column (excel)
I have an array of 30 columns and 800 rows (Sheet 1), each cell has either text or is blank. I want to check if ANY values in this array (specificially row by row) exist in a column (Custody List...
View Articlesum multiple columns with sumif function in excel
I would like to sum multiple columns with sumif function column by colum.For example.Criteria range is "Column A"Criteria is "Aplle"Sum range is "C1:G100"I dont want to use SUMIF(…) + SUMIF(…) +...
View Articleuse more than 30 arguments in sum function in excel
I want to use more than 30 arguments in sum formula for excel, I am using below formula:-=SUM(IF(AND(ISNUMBER($F$73), ISNUMBER($J$73)), PRODUCT($F$73, $J$73/100), 0), IF(AND(ISNUMBER($G$74),...
View ArticleCount unique values only
Ive got a table similar to the following (it contains blanks):Column AColumn Bdate 1value 1date 2value 1date 3value 2date 4value 3date 5value 1value 4Now I want to count the value in column B on a...
View ArticleExtract text from parentheses in Excel
I have an Excel list where I need text that exists within parenthesis.e.g.FromGene nameColumn I needO70257syntaxin 7(Stx7)Stx7Q7TQ90alcohol dehydrogenase 5 (class III), chi polypeptide(Adh5)Adh5I tried...
View Articlevba date filter criteria derived from a cell reference
I'm trying to filter data where one filter criteria - month - needs to be entered by the user in a cell on one sheet in the workbook.If the data is typed into the code, it works fine, as written...
View ArticleComparing dates in Excel
I'm trying to compare date in excel to return a value.I want to see...if date of birth + today() is less than DATE(2021,9,1) years then output 6if date of birth + today() is less than DATE(2021,9,1)...
View ArticleExcel 2010 comparing multiple columns (2 columns to 2 other columns)
I want to compare 2 columns to 2 other columns.The thing is that I want to be able to search the whole column for the second set of 2 columns. For instance, values in C2 and D2 could match values in...
View ArticleHow to export excel with phone number format data using Maatwebsite Laravel
I'm confused with laravel export using maatwebsite, I want to keep phone number data after exported with "+62" but the result is "62...". 0 => array:17 [▼"created_at" => "13 Sep 2016 @...
View ArticleVBA download file from website - popup window
I am trying to automate a file downloading from a website. When I do the download manually, all I have to do is to click on the "save" icon (floppy disk), then another window pops up for a second and...
View ArticleSkip the first occurence of a vlookup
I'm trying to do conditional formatting with a vlookup. The problem is that I don't know how to skip the first occurrence of the vlookup if the value that the vlookup is not the one that I want. For...
View ArticleExcel VBA Intersect Returns 0
I am writing a VBA which creates a table for the user to populate with values and then plots that table on a chart. Part of the code detects whether the user has already run the VBA (a populated table...
View ArticleI would like to change values that were input as zero since they were missing...
However, you’re working with the newest data and it hasn’t been cleaned yet. Missing values were incorrectly entered as zeroes, and you need to change them to null values before you look for trends....
View ArticleAWS hosted server and data to Excel
Our company moved a server to the AWS cloud not too long ago.We use some software the stores info into a SQL database.Normally before the cloud we are trained to use Excel to connect to one the local...
View ArticleError when running Python Program: com_error: (-2147023174, 'The RPC server...
I am working with Excel, Python, and Visio and when I run this simple code, I get an error of com_error: (-2147023174, 'The RPC server is unavailable.', None, None)This is the code I am running:for row...
View ArticleExcel drop down values from a SQL Server source
I am trying to get a cell drop-down values in Excel from a SQL Server. I don't want to use the method of putting all the data to another sheet and the use data validation to control the drop down...
View ArticleExcel scatter plot lines appear broken and uneven [closed]
I am trying to add a graph to a Word document showing energy over time from a simulation I ran. There are lots of data points (over 40 000). I decided to use a straight line scatter plot because it...
View ArticleVBA function to list cell direct dependents, including remote sheet cells
I want to list all the direct dependent cells of any given cell, wherever they are in the Excel workbook. This is part of a bigger goal where I want to recursively trace all the subsequent cells and...
View Article