VBA (Visual Basic for Applications) is the dominant programming language for Microsoft Office Applications [Word, Excel, Access...].

learn more… | top users | synonyms

0
votes
0answers
11 views

Excel i want to know the formula for sum

In excel sheet i have two columns one is empid , other columns no of day present my question is in empid column employee no is repeated so i want in one row the total no day of this employee has to ...
0
votes
0answers
13 views

Inserting blank rows in visual basic excel

When I click a button, I want to add two rows after a cell which has content. How can i improve my codes below? for the first 2 rows, there are already contents in the cells. i tried to copy the 2 ...
1
vote
1answer
15 views

Excel VBA - Find a set of characters and set as string

I have a set of descriptions that contain ID numbers arranged into a column. For example: Column A This is a description with the ID number in it ID12345. This is a description ID66666 with the ID ...
1
vote
1answer
27 views

hiding formulas in formula bar

when i used the codes shown below in visual basic, the HYPERLINK part appears in the formula bar in the worksheet. i just want the "TextHere" to display in the formula bar. what addtional codes can i ...
1
vote
1answer
18 views

create hyperlink in visual basic excel between worksheets

When I used this formula, Sub IndexingSheets() Sheets(1).Range("B3").Formula = _ "=HYPERLINK(""#" & ThisWorkbook.Sheets(2).Name & "!A5"", ""TextToDisplay"")" ...
2
votes
0answers
26 views

ADO is truncating Excel data

I have a function that gets an ADODB recordset from the contents of a worksheet using ADO, as follows: Function WorksheetRecordset(workbookPath As String, sheetName As String) As adodb.Recordset Dim ...
0
votes
1answer
15 views

VBA-Excel Place blinking cursor in selected cell

This is probably super easy, but I can't seem to figure it out. When I click on any cell on my sheet (single-click), I want the cursor to be in that cell blinking (as if I had double-clicked on the ...
0
votes
1answer
44 views

Converting MM:SS.000 to total seconds

Did some searching and all results have solutions for formatting INTO time format. I'm trying to get OUT of time format! I've got a list of lap times in excel and I'm attempting to use VBA to convert ...
1
vote
1answer
35 views

Loop through multiple divs using VBA

I am trying to extract information from a HTML page using Vb script. This is the HTML page from which I am trying to extract the information. <div id="profile-education"> <div ...
1
vote
1answer
23 views

Excel Unhide Row based on value in a range

I know there are many questions here about hiding and unhiding rows in excel-vba but I can't seem to get my code to work... I am working on a spreadsheet that has the month's totals listed on top. I ...
-2
votes
0answers
23 views

Create a excel userform that will auto-populate into designated columns/cells in an spreadsheet

GOAL: I would like create a code for a userform that I can input data into, and the data entered will automatically be entered into designated cells in a sheet within the same workbook. I'd like my ...
0
votes
2answers
16 views

How to compare string from cell with string from inputBox()

I have a spread sheet that look like so: Group | Name | Title ----------------------------------- X WS - X DH - X M - X DH - X WS ...
0
votes
0answers
28 views

While statement Method 'Range' of object error

I get this error from the 'While Not' line in the code below: DataSheet.Range(Cells(Curli... = <Method 'Range' of object '_Worksheet' failed> Dim CurLine As Integer CurLine =Worksheet Set ...
1
vote
1answer
11 views

Excel VBA: Using a variable when defining a list as a String

Pretty new to VBA but I'm learning quickly. I'm finally getting used to using loops to perform repetitive tasks, and in this case, I want each pass through the loop to define a different variable. ...
0
votes
0answers
15 views

When to use TextFrame or TextFrame2 in VBA

Example, in Powerpoint: The TextFrame object: Represents the text frame in a Shape object. Contains the text in the text frame and the properties and methods that control the alignment and ...
0
votes
1answer
21 views

how do I get my macro to automatically copy data from range of one book to another range in book 2

This is my second day using VBA and excel.I'd like my macro to automatically copy values from the woksheet "Consulting-for Paracon_aax.xls" for a range "E24"to "Q24" and paste the values to a ...
0
votes
3answers
23 views

Adding a title after spreadsheet and macros are written

I have been making a spreadsheet with sorting macros for my work for about the past week. I finally finished up the coding(98% of it) and my boss now tells me I need a title at the top of the ...
1
vote
1answer
35 views

Automate IE with VBA - Click Javascript Link (no Anchor tag)

Our company uses a browser-based program for business operations. My goal is to grab some data out of this system automatically. The site itself uses frames pretty heavily, but I'm doing pretty ...
0
votes
1answer
48 views

Complex Macro- Creating tree relations

I need help creating a macro that will perform the following function, or something similar (I am not sure whether it is even possible to create such a macro) : I have 60,000 + rows of data with two ...
0
votes
0answers
35 views

Excel creates new button everytime I run macro

I have some macros for a table that do this each time they are run: Open a new book Copy the original table Sort the table in the new workbook. Each time I run one of these, Excel places a new ...
2
votes
1answer
25 views

ActiveSheet.Shapes(Application.Caller).TopLeftCell.Row returns wrong row

I'm using a small macro to add and delete rows in a protected worksheet. For this each line has a "Delete" button. When a new line is added, the last existing line is copied (including the "Delete" ...
0
votes
2answers
58 views

Hiding Cells in Excel with a macro

I am desperatly looking for help with my excel macro to hide rows if a certain criteria is met. I have tried to enter all the code previously provided in other question answers and just cannot get the ...
1
vote
1answer
21 views

Excel Looping through cells with vbTextCompare to assign categories

I have a spreadsheet which contains a summary Column(Column K) on each row. I need to match certain words in the summary column in order to assign a category name in a new column(Column V). I tried ...
1
vote
1answer
39 views

hyperlink in visual basic excel

what i want in the code is that when i click this cell B3 in sheet1 it will direct me to A5 in sheet2 then vice versa, when i click A5 in sheet2 it will bring back me to B3 in sheet1 ...
-3
votes
0answers
24 views

run a macro on several TEXT files

I am having a folder with multiple text files and an excel file. The excel file contains a macro that imports a text file and process it. I need a macro that would make my code to run on all the text ...
0
votes
1answer
30 views

VBA Code to Print Multiple Sheet using the VBA Worksheet name and Visible

I have been working code to Print Multiple worksheet Using the VBA worksheet with the condition of Visible=True and excluding specific worksheet. I am not getting anywhere. Sub Printetail() ' ' ...
-1
votes
2answers
24 views

Making Excel VB compare cells and then select all rows which contain the same data in a cell and re-format plus chart

Simple question but I simply cannot find an answer. I find searching through the awkward excel visual basic manual with only beginner level knowledge very frustrating. Please help. I have data from a ...
1
vote
2answers
26 views

Trying to copy data from a .xls workbook into a .xlsm one while generating data

I am trying to loop through one column of a .xls workbook. Each row of that one column has data that needs to be copied over to the new .xlsm workbook while auto-generating strings I've made (name, ...
0
votes
1answer
48 views

Excell Print VBA code combine with VBA Custom Footer

I need to create a macro to print two sheets and include a custom footer that references several of the cells. I have tried so many combinations, but I don't know what I am doing wrong. I get the ...
1
vote
2answers
32 views

Last modification date of open workbook

Vba newbie. Need a function to output the last modification date of an open workbook. Here is what I have so far but I am getting a message that my formula contains an error when I invoke the ...
0
votes
1answer
27 views

How do I loop across both rows and columns of a range in VBA?

I'm trying to create a Gantt chart type display using only cell values. Formulas will not work due to formatting so I need to have VBA run instead. I want to loop across the both the columns and rows ...
1
vote
1answer
19 views

excel 2010 vba make cell active

I'm attempting to write an Excel macro that will take a column of data and edit for formatting errors. Background: Spreadsheet gets sent out to company with three name columns - LName, FName, MI ...
-3
votes
1answer
36 views

Code to move multiple rows and columns into singular row with multiple columns

I'm looking for a piece of code that I can use to move data in Excel from multiple rows into one row based on it having the same id in column 1. See example data below: Column1 Column2 Column3 ...
0
votes
0answers
32 views

Automate Source Data in Excel

I have two sheets in my excel file. One contains a pivot chart("pivot") while the other one contains data("Data"). What I want is after filling up a column from "Data Sheet", the pivot chart will be ...
0
votes
1answer
34 views

Count Occurrence of a Character in a String on Multiple Rows Sorted by Keyword [vba]

VBA newbie. Finally encountered an Excel problem I could not address with formulas. Here is my sample data: ----------------------- | | A | B* | ----------------------- | 1 | Text1 | ...
-2
votes
1answer
50 views

Delimiter as text column format

I have a problem using the delimiter "^" in splitting text into columns. Can someone help me? the top will have the same output format with the bottom format after importing multiple .txt files. ...
0
votes
1answer
33 views

where will I put the codes when button is clicked?

i've created a macro to create a button when the sheet is activated. then i called it using the codes below: But everytime i go to different worksheet then back again to the sheet containing this ...
0
votes
2answers
20 views

VBA - “Run-time error 424: object required”

So although I feel the need to mention that I’ve already made several posts on here regarding this project, I’ve since made some progress on it: For those that haven’t read any of my prior posts, I ...
-1
votes
2answers
23 views

How to get the following code to continue on error?

If CheckContractStart(MoreMemoryBlock(i)) <> "" Then Cells(RowCount + i, 3).Value = Format(DateValue(CheckContractStart(MoreMemoryBlock(i))), "dd MMM yyyy") Else Cells(RowCount + i, ...
0
votes
5answers
47 views

Extract 1st letter from cell concatenate with another cell paste in third cell, then next row

I need to extract 1st letter from cell B2 concatenate with cell C2 paste in cell A2, then move to next row and repeat till last data row. I have the following, which partially works, but only works ...
0
votes
1answer
32 views

using delimiter as column format for impoted txt files

how can I apply delimiter "^" as columns from imported multiple txt files. Pls Help. .. Private Sub CommandButton1_Click() Application.ScreenUpdating = False Dim oFileDialog As FileDialog Dim ...
0
votes
2answers
38 views

How Might I set the Lookup Value to a date range for VLOOKUP?

Hi, I am trying to obtain the value of X,Y and Z by matching the tender closing date in cell G2 with vlookup. However, I am truly lost because it returned #n/a. Anybody knows what could be done?
0
votes
0answers
30 views

Excel VBA - protection prevents code executing on one computer but not another

My Excel workbook applies protection to several of its sheets upon opening, as follows: Private Sub Workbook_Open() Sheet1.Protect Password:=PROTECTION_PASSWORD, UserInterfaceOnly:=True ...
1
vote
1answer
27 views

VBA Loop and copy regions from sheet to sheet

I am trying to loop down the column "Q" on my active sheet, find values that are in between 27 and 40 and then copy that cell along with a region around the cell noted by the (-1, -16) into a new ...
0
votes
3answers
51 views

How do I count occurrences of a pattern of data in Excel?

I realized after manual scanning 90 records, that this was going to be painful and tedious unless I made use of automation. I have this set of data, about 4000 records that occurs in a pattern that I ...
1
vote
2answers
39 views

execute macro when cell value changes due to another macro

I have a sheet with two buttons. One button places a value in a cell (E2) and the other button counts that value (in E2) down by 1 every time it is pushed. I want the value in E2 cell to dictate the ...
1
vote
2answers
29 views

I have a excel file and want to delete some data before the first <br /> tag

Donkeys are <a href="#">also</a> humans <br /> hello hello hello <br /> hey hey hey I want to delete "Donkeys are <a href="#">also</a> humans ...
0
votes
2answers
27 views

Change Sub to Function then Call in vba

I have a password generator Sub, I want to change it to a Function and the use it in a Macro to generate a column starting on B2 were each cell after is a unique password. The only thing it does is ...
1
vote
2answers
54 views

concatenation until empty cell

I've made a code to concatenate 3 columns namely YR which corresponds to cell A2, JJ which corresponds to cell B2 and YA which corresponds to cell D2. when i clicked a button i want it display the ...
0
votes
0answers
32 views

vba automatic org chart excel

I found the below code on the net. It seems to use two columns to organize data and create an org chart auto. I have a similar need..but I need it to go off three columns and I am not sure how to ...

1 2 3 4 5 163