Excel Find/Search Function Returning False Negatives
This simple issue has me absolutely stumped. I'm trying to search a single cell for a list of items, and for some reason it is only working part of the time. Columns A:C are all formatted as Text, and...
View ArticleVBA - Custom Function Help (For Loop & Ranges)
I'm currently trying to right my own function for the first time and need some help with looping through a set of data. The code I have posted below allows me to set two variables "CFirstCell" and...
View ArticleExcel Formula to Identify 3rd "full" week of Month
I'm creating a workplace calendar which uses formulas to identify the dates of key department events. One event I am trying to create on the calendar is the monthly department Town Hall, which is...
View Articlepull full names and surname/surnames form the consecutive paragraphs in Excel...
First Things First: The macro is run from Excel VBA editor, but performs the biggest part of its job on the previously opened Word document, where it's goal is to find the full names of the people who...
View ArticleRetrieve the most duplicated value for a specific Data
I am having difficulties programming this idea.As you can see here in this sheet, ID no: 9999999 is the most ID listed in front of the documents mismatch. Which mean ID no: 9999999 is the most one...
View ArticleCalculate formula downwards with openpyxl
I have a a spreadsheet with column A containing dates. I am using a formula to see the difference in days between A1 and A2, A1 and A3 etc, using this excel formula in column B.=datedif(A1,$A1$1,"D")...
View ArticleHow to remove repeating elements from two columns in Excel
I have two columns for example:A B 1 2 1 3 1 5 3 4 2 1 4 3 I want the output to come like this:A B 1 2 1 3 1 5 3 4 I want to remove the data which gets repeated from 1 column to another. Is there any...
View ArticleExcel Data Validation not processing recent cell-data from smartphone input
I have recently observed an issue regarding my data in a column that I use to perform data validation on my spreadsheet. So There is nothing wrong with the formula, neither is there anything from with...
View ArticleWhy does activating specific sheets affect run time of my macro
Edited for brevity/correctness: Scroll to the end for a TL/DRI run a fairly lengthy macro which opens a bunch of files from Workspace/Sharepoint, copies things over to my excel sheet, loads data into...
View ArticleVBA sin() and cos() trouble
Im trying to make some VBA form and to calculate some simple values but I dont understand why VBA dosen't recognize Sin() and Cos() functions. For example: I wrote int() and VBA transformed it into...
View ArticleHow to styling the cell in PHPexcel?
I would like to:1) set min-width of the cell On the internet there is some discussion about this , but I find the code not...
View ArticleIgnore optional argument of a custom Sub
I have a custom sub that takes a required argument and an optional one: Sub selectRange(txtbox As MSForms.TextBox, Optional lbl As MSForms.Label) This works just fine, but the thing is - have to pass...
View ArticleReplace an existing image with a new image
I've made a real estate related worksheet that includes a few cells for the property's address and a picture of a Google Maps view of the property. I want to be able to change the address in the...
View Article.PivotItems.Count - select second to the last entry
For a Pivotchart, I currently use the following code to move a certain value always on top of the chart. Now I would like to use the same for moving another value to the second to last entry (one...
View ArticleExcel VBA SQL Join
I want to join 3 tables as given in the attached image, fetching common field from A, fields 2 and 3 from B and memo field from C using common field. I require the latest record in the memo field to be...
View ArticleCompute Mean square error between each pair of 31 arrays on imagej or excel
I want to compute the Mean Square Error between each pair of 31 arrays of size 1024 containing gray values of profiles of lines on 31 images.My arrays are full_yval1 to full_yval31 and i want to find...
View ArticleVBA work fine in Microsoft word but not working in Libre office writer how to...
I use this code to replace text in word file its work fine in Microsoft Office but have not work on Libre office writer'Private Sub CommandButton1_Click() Dim AppWord As Word.Application Set AppWord =...
View ArticleDelete row of found result from VLOOKUP function
I made a userform where you can look for a word and it will return the found word (using Vlookup), you can add a new word with a definition to the database (btw, the database are just two columns:...
View ArticleC# OPEN XML: Empty Rows are getting skipped while getting data from EXCEL to...
TaskImport data from excel to DataTableProblemSome of Rows that does not contain any data are getting skipped and the very next Row that has data in the row is used as the value of the empty RowE.gIn...
View ArticleCalculation error when sum of double variables using VBA [duplicate]
I am writing a function for adding figures in my sheet. Those figures contained of 2 decimal places. My code is simple, just like: dim a as double a = a + application.sum(rng)I do not know why VBA add...
View Article