Learncado
Learncado

Learncado brings together a vast collection of questions and answers. Expand your knowledge, learn new skills, and find solutions to your queries effortlessly. Enhance your learning experience and save valuable time by exploring our website today.

Resources

  • Questions
  • Question By Tags

Help and support

  • Contact
  • About

  • Geniecourse
  • Jetsodeals
  • Rentcado
  • Dealcado
© 2021-2023 Learncado All Rights Reserved.

Search Results (297)

Results for vba

November 29th, 2023
How can I extract the "Compression" attribute from a jpeg file in Windows 10 using VBA (or PowerShell)?

I'm trying to extract the Compression attribute from several thousand jpeg files. How can I do this with either Excel VBA or PowerShell (or some othe...

powershellvbafileattributesjpeg
Read more
November 29th, 2023
How to create a VBA script that creates new row, if more than one match is found?

To clarify, say we have data like this (except column sku & image are several 1000 in length): Matching A2 to B2 is easy, but not so much when upload...

excelvba
Read more
November 28th, 2023
How to insert one Row from duplicate row data and fill insert row VBA

im have Problem and i hope u can help me :) I really confused about this problem, because i dont how i can do that, i search on google and i cant foun...

excelvba
Read more
November 28th, 2023
VBA if another cell "MAINTENANCE" then return "CLOSED", otherwise leave cell empty for user to input text

So I am creating a worksheet that requires a cell to return the text "CLOSED" if another cell has text "MAINTENANCE". At first glance I tried using =i...

excelvba
Read more
November 27th, 2023
What is the difference of Array("2023","2024","2025") and Array("2023,2024,2025") and Array(2023, 2024, 2025) in Excel VBA

I have this in my code: Dim cYear() As Variant I am not so sure what to code next. Should it be like this: cYear = Array("2023","2024","2025") or cYea...

excelvbaarrays
Read more
November 29th, 2023
RegEx and Excel VBA for date extraction from a filename where date can be dmmyy or ddmmyy

I am trying to rename a set of pdf filenames in the form: "Joe BLOGGS_3052023.pdf" or "Joe BLOGGS_31052023.pdf" ("FirstName SURNAME_dmmyy" or "FirstNa...

regexexcelvba
Read more
November 26th, 2023
A Copy Paste Fail Excel VBA

Here is the code I used (triggered by a button on the "Sorts" worksheet): Sub EOS_Archive_2() Dim LCopyRow As Long Dim LDistRow As Long LCopyRow = W...

excelvba
Read more
November 26th, 2023
VBA excel userform and textbox

EDIT I think I might have alongated too much tryin to explain, and I will post a shorter version, cuz I figure it out it might get easier to understa...

excelvbauserformtextbox
Read more
December 1st, 2023
Excel VBA: Double-sided Name Badges

Thank you in advance for reading my question.😀 I'm looking for a way to print the exact information on both sides of name badges. I have a data base ...

excelvbams-word
Read more
November 23rd, 2023
VBA Excel cycle through sheets, find last row in table and autofill with data

I need a script that cycles through all the sheets in a workbook and adds 2 (or more) columns at the end of the table of each sheet (except the first ...

excelvbaforeachautofill
Read more
November 23rd, 2023
Excel VBA Prevent Some Pictures from being deleted

I have this code. I want that it does not delete 3 pictures which are named, pic__Flag, pic__Building and pic__Logo. These pictures are inserted with ...

excelvba
Read more
November 22nd, 2023
Copy a single row from worksheet to worksheet in VBA

The number of ways to simply copy a row in a worksheet to another worksheet is bewildering, as is the number of parameters required to specify it. Eve...

excelvba
Read more
November 22nd, 2023
Exporting Excel Sheet as CSV with title "Labels YYYY-MM-DD" with a VBA button

I found this code online, but I believe the original purpose was to export as some other file. Regardless, I want this code to export the excel sheet ...

excelvba
Read more
November 25th, 2023
VBA TAG RIBBON ACTIVATE on event

I would like to enable custom tabs based on the activated sheets. So I have an event macro at the workbook level. Private Sub Workbook_SheetActivate(B...

excelvbatags
Read more
November 21st, 2023
VBA copy data from workbook to another based on criteria

I have 2 workbooks, one source workbook with data spread over different sheets, and one target workbook where this data needs to be copied to, on one ...

excelvbaif-statementcopycase
Read more
November 21st, 2023
VBA Copy Merged Rows into single cell

I was trying to copy merged rows to another workbook single cell using Macro. Does anyone knows any code snippet as reference please. Thanks. Source t...

excelvba
Read more
November 20th, 2023
Excel VBA: Compile Error 13 while using numbers in col. M to add rows and copy down data from col. N and O

I am running this block of code that looks for product quantities in column M and if the quantity is greater than 1 it inserts a row beneath that valu...

excelvba
Read more
November 19th, 2023
VBA Formatting issue causing compile errors

I am currently trying to format a block of code someone gave me in a comment on a previous question but have been getting a lot of compile errors. The...

excelvbaformat
Read more
November 20th, 2023
Update Access Database Table using Excel VBA

I have a Time In and Time Out buttons in a form. And I have a VBA Module code that saves the last entered data/last row of an entry from an Excel Tabl...

excelvbams-accessinsert-update
Read more
November 18th, 2023
How to make this VBA so that it concatenates range A2:A200 but pastes in a new cell 15 cells have already been concatenated together?

I want to alter this VBA so that it concatenates the range of A2:A200 but rather than inputting the result into the specified C1 cell, it will instead...

excelvba
Read more
November 17th, 2023
VBA to concatenate range of cells, separated by delimiter of " OR ", and stop when a blank cell is reached?

I am trying to concatenate the range A2:A200, separated by " OR ", but have the VBA stop once it reaches a blank cell. How do I adjust the VBA I am us...

excelvba
Read more
November 17th, 2023
VBA Copy Paste without formatting from another workbook

I have this code which helps me to copy paste information from one workbook to another. The values get pasted with format and formulas, but I want to ...

excelvbacopy-pastecopypaste
Read more
November 17th, 2023
VBA Auto Row Insert by Starting Letter

Is there a way I can use VBA to search any of the rows in column A for the letter Q and if letter Q is the first letter in that row than the code woul...

excelvbaautomationspreadsheet
Read more
November 20th, 2023
VBA : Most efficient way to not display trailing zeros in a cell

After seeing this post I was wondering what's the best way to remove trailing zeros in a cell with VBA. By the best way I mean the shortest line of co...

excelvbaformat
Read more
November 16th, 2023
Coloring Cells via VBA for each loop

My question is now answered. I have selected several cells in excel, e.g. Range("B3:F6"). Running the following code, that I copied from the answer be...

excelvbafor-loop
Read more

Hot Topic

  • 25881

    How do I undo the most recent local commits in Git?

  • 11618

    How can I remove a specific item from an array in JavaScript?

  • 20343

    How do I delete a Git branch locally and remotely?

  • 7387

    How can I find all files containing a specific text (string) on Linux?

  • 7330

    How to find all files containing specific text (string) on Linux?

  • 7611

    How do I revert a Git repository to a previous commit?

  • 2671

    How do I create an HTML button that acts like a link?

  • 8481

    How do I check out a remote Git branch?