questions/others/page/12
Try this: Option Explicit Sub demo() ...READ MORE
You can use OLEDB to create and ...READ MORE
Use this: =IFERROR(LEFT(A1,FIND(" ",A1)-1),A1) What does it do? Finds the ...READ MORE
Try: The formula in F3: =TAKE(SORT(FILTER(A:C,B:B=F1),1),- ...READ MORE
You just need to adjust the font ...READ MORE
Try, =DATEDIF(0,DATEDIF(B2,C2,"D")*0.75,"Y") & " Years, " & DATEDIF(0,DATEDIF(B2,C2,"D")*0.75,"YM") ...READ MORE
If you wish to utilise a single ...READ MORE
Try this: #"Added Custom" = Table.AddColumn(#"PriorStepNameHere", "Hour", each ...READ MORE
You have to use dateadd. For i = 1 ...READ MORE
You can use useId to create a ...READ MORE
Create a CSV file that is in ...READ MORE
Use WorksheetFunction.CountA() (https://learn.microsoft.com/en-us/office/vba/api/excel.worksheetfunction.counta) function If WorksheetFunction.CountA(rng) = 0 Then ...READ MORE
Solution You need to fully qualify your Columns object ...READ MORE
It's possible that I don't understand how ...READ MORE
Verify the indentation. I executed the sample ...READ MORE
I have a homework to make a ...READ MORE
You can use a Select Case statement : Option Explicit Sub ...READ MORE
VBA bubble sort - no changes to ...READ MORE
Try this: Option Explicit Sub CopyChartsToPowerPoint() ...READ MORE
Let's say that cells A1, A2, A3, ...READ MORE
With the next available row as the ...READ MORE
Microsoft Excel only stores en US formula ...READ MORE
Try this: def teste(id): listID = ...READ MORE
Data is separated into CSV (Comma Separated ...READ MORE
I faced a comparable challenge. A bespoke ...READ MORE
You are looking for an IsEmpty check in your ...READ MORE
Try this: Sub OrderColumns() Dim ...READ MORE
Try this: Sub CopyCurrentTime() Dim currentRow As Integer currentRow = ...READ MORE
To get a date from your strings, ...READ MORE
Try this. It worked for me. def Remove_password_xlsx(filename, ...READ MORE
Before looping through all of the cells ...READ MORE
The progress bar is unnecessary. Option Explicit Sub VTest2() ...READ MORE
Use this: Option Explicit Type ObjLocData ...READ MORE
Try creating a template for excel to ...READ MORE
To my knowledge, the only method to ...READ MORE
An assignment statement (as ruta = ActiveWorkbook) ...READ MORE
Try this: =SUBTOTAL(105;B2:B7) READ MORE
This macro contains the functions Split() and IsNumeric(), it's all ...READ MORE
Use SORTBY, e.g. =SORTBY(A2:B5,A2:A5,1,B2:B5,1) Or simply&nb ...READ MORE
You have a function called ExportRange that ...READ MORE
FILTER Function: "filters" a range of data ...READ MORE
The issue is that when you send ...READ MORE
I discovered the answer. The issue was ...READ MORE
Several distinct libraries perform Excel file parsing ...READ MORE
You can try FILTERXML(). READ MORE
Your array has no capacity for data ...READ MORE
Try this: =LET(files,A1:A4, URLs,B1:B4, f,BYROW(files,LAMBDA(r,TEX ...READ MORE
Try the following settings to better understand ...READ MORE
Try this: ? Activewindow.VisibleRange.Row READ MORE
Add: If xRg.Row = xRg.Parent.Rows.Count Then ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.