1
vote
2answers
32 views

Is there a way to execute VBA code contained in a cell?

I'm building a macro in Excelto run rules against a set of data and output whether each row passes or fails the rules. I want to be able to add, remove, or alter the rules without altering the macro. ...
0
votes
0answers
20 views

Copying data from variable cells and pasting to fixed cells in another spreadsheet

I am looking to build a macro in excel 2013 which can do the following: Copy data from individual cells in one spreadsheet (spreadsheet 1). The columns will never change but the rows will as it is a ...
0
votes
1answer
22 views

Excel to copy realtime data and create a chart out of it

I am very new to VBA programming. I have a excel sheet where real time data is populated to a cell say for example Sheet1.A6 everysecond. I am in need of a macro which will run every 1 minute ...
0
votes
2answers
35 views

Excel VBA - strange behaviour when UDF wraps VLOOKUP

I want to write a user defined function that wraps VLOOKUP. All it requires is a reference to the column that data should be imported from, and it will execute a VLOOKUP assuming that the IDs are in ...
3
votes
1answer
32 views

VBA - Go to website and download file from save prompt

I've been spending the last few hours trying to figure out how to save a file onto the computer using VBA. The code template below that I found on another forum seems promising, except when I go to ...
0
votes
3answers
31 views

Need Excel VBA Guidance

The issue I am looking to solve: I want to look at one column which is automatically populated with a due date. My organization wants to enforce an In-House due date of two business days (M-Th) ...
0
votes
1answer
29 views

Header gets cut off when I run a macro in Excel

I have a header set up in a master spreadsheet in which I run different macros off of to sort the information differently. When I run the macros, the bottom portion of my header is cut off. My header ...
-2
votes
0answers
26 views

Iterate over multiple divs and extract information in VBA

I am trying to extract information from a HTML page using VBA. The HTML code from which am trying to extract the information is as below. <div class="section subsection-reorder summary-education" ...
0
votes
1answer
26 views

VBA Run / do something when the file start up

As an alternative to global variable, I am trying to read the last value I worked on at start up. I read this: Excel VBA: Workbook_Open, and this. and tried to implement my own. But it is not doing ...
0
votes
0answers
20 views

skydrive excel web app

I've made a calculator which calculates gross and net value depending on tax. Something like this: Gross | Tax | Net -------------------------- 100 | 10% | is calculated when gross ...
0
votes
0answers
27 views

Trouble with ListObjects.add() in Excel Macro(VBA)

First off, I am not good with SQL and it has been a while since I have worked with VBA. With that being said I got stuck with editing an existing excel macro to make it do something else. I think I ...
4
votes
1answer
50 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
48 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 ...
0
votes
2answers
23 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
36 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 ...
0
votes
0answers
23 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 ...
1
vote
1answer
50 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 ...
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
2answers
33 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
55 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
34 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
29 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 ...
-3
votes
1answer
37 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
35 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
39 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
52 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
2answers
24 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
vote
1answer
46 views

How to clear duplicate-named columns?

Actually i have to find a column named "account" and i have to delete the data entered in that column. Lets say Column name "Account" is in the cell "B9" and values have been entered till "B30"(it is ...
1
vote
3answers
41 views

How to break long string to multiple lines

I'm using this insert statement in my code in vba excel but i'm not able to break it into more than one line SqlQueryString = "Insert into Employee values(" & txtEmployeeNo.Value & " _ ,'" ...
1
vote
1answer
54 views

Function without return doesn't work

I have a macro that calls a function: Function escreve_mapa(Row As Integer, LastColumn As Integer, equipamentos As interger, Abrangencia As String, medias) Dim cell As Range Dim colunas As ...
2
votes
1answer
46 views

Inserting into an Excel VBA string

In JAVA or C++, we can do something along the line of myString.insert(position, word). Is there a way we can do the same in Excel VBA's string? In my worksheet, I have a string looks like this: 01 / ...
-1
votes
0answers
51 views

Need VBA code to save list of data to new workbooks [closed]

I have a list of data that could be anywhere from 1,000 rows to 60,000+. I need to break them up into lists of 100 records plus the header row (1). I'd like to specify the file name incrementally as ...
0
votes
2answers
43 views

Excel VBA transpose with characters

I have a range with 918 cells (A1:A918). Each cell has one string. I need vba code to surround each cell with quotes (" ") and add a comma (,) at the end. Then Transpose the list. I cannot add those ...
1
vote
2answers
59 views

Recorded macro does not work on chart object

I recorded the following macro : Sheets("Rejets Techniques TGC").Select ActiveSheet.ChartObjects("Graphique 1").Activate ActiveChart.Axes(xlCategory).Select ActiveChart.SeriesCollection(1).Values = ...
2
votes
3answers
34 views

ByRef arugment type mismatch in Excel VBA

I am new to VBA, I wrote a user define function that takes a string, process it and return a cleaned string. I am not sure what is wrong with it. I am not able to call it and ask it to process my ...
0
votes
2answers
34 views

Filtering rows based on content from multiple columns

I am stuck writing a macro that filters a list. I am getting some results, but not the ones i need. Here is some speudocode that describes what i want. Sub Filter1() ____Dim listOfRows As ...
1
vote
1answer
38 views

Excel VBA Set Auto Filtering

I am learning VBA for Excel and really strugling to do it. Right now I am doing coding to set a filter for a data chart. Basically i dont know how to post the data sheet up here so just try to type ...
-1
votes
2answers
43 views

Deleting all columns except columns with certain headings

I am trying to format exported data and need to delete several columns. I want to keep columns with certain headings. For convenience if I have 15 columns and want to keep columns with the following ...
0
votes
2answers
42 views

Code replaces table headers and will not merge rows

I am sorting this table by metric tons per hour, and the code I have so far deletes the headers(the second row down is just shifted up) and I can't figure out how to make this not happen. Also, I want ...
1
vote
0answers
64 views

Getting source code (or HTML table) to show on EXCEL

I don't know what the problem is, but when I've pasted the source code of the link that I want to get it, on PASTEBIN, it worked. But it doesn't work the link on excel itself. Check the code: ...
1
vote
6answers
150 views

VBA, search in column for specific character, extract string upto that character

In a specific column, I want to search for a specific character in cells...say "(" or "/". Once this character is found in a cell, I want to extract the part from the beginning of the string upto the ...
0
votes
2answers
47 views

VBA Decimal point from float value in a Cell is automatically discarded

I have a variable with float value i.e. Dim H_reqquant As Double 'Its value is 10.5 But when I get this value in VBA like this: H_reqquant = Worksheets("Data").Cells(3, 8).value It is converted ...
0
votes
4answers
35 views

Subscript out of range VBA Excel

Dear Stackoverflow friends, I keep getting an error here which is driving me crazy. Run-time error '9' Subscript out of range Here is the code: Sub UpdateIt() 'Clean ...
-1
votes
2answers
52 views

excel VBA trying to get my macro to run faster [closed]

I am trying to get my macro to run a bit faster and i was wondering which way is the fastest: 1) Set cell2 = Range("F" & CurrentRow) Set Columns = Range(cell2, cell2.Offset(0, LastColumn - 6)) i ...
0
votes
0answers
38 views

How to center all tables in Word, coming from excel - VBA

I'm very new to VBA and my first code is to copy excel tables and paste it at word. It's working, but the problem is that all tables are pasted left-aligned and I want it center aligned. Does anyone ...
0
votes
0answers
37 views

Automating tables creation with VBA code [closed]

Hi I have a challenge for the VBA savvy geniuses here. I am still a newbie hence here to seek your help. I am automating processes and need a code to automate the tabulation of items in worksheets ...
0
votes
1answer
41 views

Vba closing excel applications/workbooks freezes

I have a problem with the following code: Dim excelapp as object set excelapp = CreateObject("excel.application") dim ws as object dim wb as Workbook wb= excelapp.Workbooks.Open(path) ws= ...
0
votes
1answer
45 views

How to change OptionButton fill color in VBA?

How can I change the fill color of an Excel OptionButton in VBA?
2
votes
1answer
29 views

External Address that isn't fixed

I have two workbooks wb1 and wb2 with worksheets ws1 and ws2 respectively. I want to do something like this: ws1.Range("A1").Formula = "=100*" & ws2.Range("A2").Address(External:=True) ...
-3
votes
1answer
76 views

Excel VBA code to change pivot chart type

I'm looking for a code to create a button which upon clicking will change the pivot table chart from a bar chart to a line graph. I want the button to be at the bottom of the graph so the user can ...

1 2 3 4 5 77