"Operation Search and Merge": VBA
I've been trying to scavange together a macro which will merge several .CSV files. However, the data I need in said file (GPS data) is located in different rows of column A. I therefor need it to...
View Articlenext number is randoly not reapeted in excel
after pressing button next barcode number is randomly and not reaped
View ArticleExcel the formula contains unrecognized text
I've got the following formula: =ArrayFormula(IF(F4:F = "";30;F4:F)) I wrote it down in an google sheets and it works fine. I sent it to my friend and he receives the following error: the formula...
View ArticleHow to sort values with VBA without changing the formatting?
Workbook The code does exactly what it should, but i would like to know if there is away to sort the values only, without changing the formatting? As of now the cells in the ranges have 2 different...
View ArticleProtect Workbook By Python
I need to set a password to a workbook by python (it requires a password to open the excel file) Here is the result I need
View ArticleHow to refresh excel file on a machine which doesn't have Microsoft excel...
I have this excel file which is of around 37MB. I am reading the file pd.read_excel() and update specific sheets of the excel with openpyxl and write back. Once it is written, the file size reduces to...
View ArticleVBA: Getting error '1004' while trying to define Range object...
Sub GoToCont() Ind = ActiveCell.Value 'value I am searching for RPointer = ActiveCell.Row 'Pointer for active cell row Dim Mark As Range 'Tried defining Mark because I kept getting errors when trying...
View ArticleGetting Exception While Reading the Excel 2013 version file through the XML...
(javax.xml.stream.XMLStreamException) javax.xml.stream.XMLStreamException: ParseError at [row,col]:[2,1062] Message: Attribute name "verorksheet" associated with an element type "pageSetup" must be...
View ArticleI am exporting MS Access 2016 form to an excel spreadsheet and empty fields...
Dim ctrlForm As Control Dim sqlSelect As String sqlSelect = "Select " For Each ctrlForm In Forms![Student Listing].Form.Controls If TypeOf ctrlForm Is TextBox Then If ctrlForm .ColumnHidden = False...
View ArticleCycle through sub-folders and files in a user-specified root directory...
My cycling script through individual files works fine, but I now need it to also look through/for multiple directories. I am stuck....The order things need to happen:User is prompted to choose root...
View ArticleHow to Insert Note using SendKeys?
I have Microsoft Office 365 2019. I asked a question with an answer about "Insert Note" with .Fill.UserPicture.I still have some error.See Screencast.I found the problem and it is SendKeys "+{F2}"...
View Articleinsert check box to a particular cell through vba macro
I would like to insert the check box in particular cell through macro. Kindly advise on how to go about.For Example: on click of a command button i should be able to add the check box to "A1"...
View ArticleRelative reference in table breaking when new row is inserted in excel
Any guidance is appreciated.Scenario: Trying to create a dynamic pie chart which excludes zeros from data and legend.Problem: I created a table and wrote the formula to filter zero value for the data...
View ArticleVBA returns error why trying to use 'lookup' in formula
When I try to run this line of code, I recieve VBA error 1004.Range("K38").Select ActiveCell.FormulaR1C1 = "=IFERROR(LOOKUP(2, 1/(COUNTIF($K$36:$K37, WIP_Table[Resource Name])=0), WIP_Table[Resource...
View ArticleExcel VBA set value when range changes [closed]
I have a sheet and i like to set automatic a value when a certain range changes. So the values need to be placed in column A and the range which can change is B:AA I placed a picture at the end of my...
View ArticleHow can I convert 3 columns of XYZ Data to a format that excel can handle...
At the bottom of this doc is the data I currently have in XYZ format. I want to convert this data to look like the image that is attached here --->WHAT I WANT DATA TO LOOK LIKE There is a way you...
View ArticleVBA efficiency test
I found a VBA code to test the run time of a code in the thread How do you test running time of VBA code? . I implemented and it worked. But every time I run a simple code, as below,it returns me a...
View ArticleIs there a way evenly assign employees to a large task list while accounting...
I have a dynamic population of tasks that I receive monthly, I want to assign these tasks to 6 groups for them to assess in an evenly distributed fashion. Each task has a ranking/priority, so if a...
View ArticleTransposing from range to end of data
I have this code, that has to transpose the data. Problem is, that i don't know how to make it dynamic, so it can transpose more than till column "O". But if there is 300 rows of data, it should be...
View ArticleInfinite loop replacing blanks with text
The sequence of tasks is correct but does not go to completion. I think that the problem arises at some point after this line LastRow = .Range("G9999").End(xlUp).Row 'Determine Last Row in Table` For...
View Article