EN VI
Posts (0)

No data results!

Please check back again in feature!

Questions (11)
2024-03-10 01:30:08
Use Dictionary object to track the location (row#) of question index . The snippet can handle more choices. (eg. Q2 has 5 choices) Microsoft documentation: Dictionary object Range.End property...
Tags: excel vba vba7
2024-03-11 01:30:04
Reading/writing cells always take some time. Several changes to improve efficiency: Load data into array Write output to sheet all at once Microsoft documentation: Split function UBound function...
Tags: excel vba
2024-03-11 22:00:09
You can achieve this by formula: =LET(data,A2:C301,idxSortColumn,3, sortColumn,CHOOSECOLS(data,idxSortColumn), sort1,SORT(FILTER(data,sortColumn=701)*(sortColumn50)*(sortColumn
Tags: excel vba
2024-03-13 17:30:11
You need to adjust OldPath so it only is the workbook name, not the full path. It also helps to declare the workbooks you're going to use and the worksheet the range is in. Sub RRQP() 'RRQP Macro...
Tags: excel vba excel-365
2024-03-15 06:00:06
You are falling into the "subroutine". You need the following code adjustment: Do While Cells(EndValueCell, 3) > 0 EndValueCell = EndValueCell + 1 Loop GoSub EndTime Exit Sub ' 0 EndValueC...
Tags: excel vba
2024-03-15 06:30:04
Use two Dictionary objects to track the Provision of customers Microsoft documentation: Range.Resize property (Excel) Application.Union method (Excel) Option Explicit Sub Demo() Dim oDicBAD...
Tags: excel vba dictionary
2024-03-15 20:00:07
The file of the first SaveAs seems to have two 2023 which is according to you is wrong, this is because the file path also includes another 2023 and missing a \ behind the 2023 I strongly believe. FI...
Tags: excel vba filenames
2024-03-15 22:30:04
Lock the row references using $: Formula1:="=" & ws1.Name & "!" & "A$1:A$" & aantalrijen2 Or just make the whole reference absolute: Formula1:="=" & ws1.Name & "!" & "$A$1:$A$" & aantalrijen2
Tags: excel vba validation
2024-03-16 00:30:04
In DebugTest(), the task.AddLaborCharge() method does NOT make a new object or copy the data from the this_charge variable. Rather, it adds a reference to the single same object that was created at th...
Tags: excel vba arraylist
2024-03-16 20:30:05
Highlight Strings in Word Document From Excel If you use early binding, you will see that you cannot use the IgnoreSpace argument with the Execute method in the way you have tried hence the error. Yo...
Tags: excel vba ms-word

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login