Simplify 120 macros of the same kind
Please, I need help to simplify 120 blocks of text like this: Code: Sub RedimensionarGraficos001A() Columns("A:A").Select Application.CutCopyMode = False Charts.Add...
View ArticleDynamically link Table data across several worksheets
Here's one for whomever is up to the challenge...:) I'm needing to link Table data from several worksheets into* another Table of the same name (with the exception of the auto-appended number suffix),...
View ArticleMultiple Criteria check / import text file
Hi All, I have a table with numerous columns of data and am trying to come up with a formula that checks for multiple criteria and displays the result (success, warning, or error) by coloring the cell...
View ArticleMacro to Filter, Select, Copy, Paste (Baseball Related)
Hi, this seems like the easiest thing in the world, but I cannot make it work so any help would be appreciated. I spent the past few hours searching and trying to answer my own question but that didn't...
View ArticleFormatting Worksheet Macro Help
Hi, I've attached a sample excel file that I need help with. Is it possible to write a macro that would delete rows that has data in Column A? However, I don't want to delete the last two rows, instead...
View ArticleOdd Type Mismatch with variables and the month function.
I get a type mismatch on the line where I set "second" = to the month of the next cell. This is particularly odd because the variable "First" is subject to the same method -- the only difference is...
View ArticleEnabling Intellisense for Excel Visual Basic 2010
I have Excel 2010. I am typing VB code in the VB editor and after I type a period after an object, I do not see the automatic drop down menu that lists the associated properties and methods. How do you...
View ArticleAttempting to edit Excel chart data in PowerPoint
Hi all. I'm trying to edit the data of a chart in a PowerPoint presentation that is linked to Excel. Here is a code I found that looks similar to what I want to do Code: Sub test () Dim myChart As...
View ArticleCopy cell in current row and paste offset down 1
I have the below macro that when I select a row either by selecting a cell or selecting a row and run the macro, it copys a row from another sheet and pastes below the row I have selected. I am wanting...
View ArticleOverflow error
Hi, I'm working on simple code to copy and paste certain rows from a list based on a corresponding list of values. (Specifically, one list contains extraneous rows of data, but I only want to...
View ArticleMacro Button to go to specific sheet
Hi, I am new to VBA and Macros. I am trying to create a button that takes you from a home page to a specified sheet. I need to make about 20 buttons. Any help in this matter would be much appreciated.
View Article[SOLVED] Inserting Event code from one worksheet to another
Hi all, I have been tasked with creating a macro/VBA code to process a weekly data base for easier viewing/updating. I have gotten the code as far as I can and need your HELP!!! As it stands now, the...
View ArticleLearning differences between ByVal and ByRef
I am trying to learn the differences between ByVal and ByRef. Below is a summary of what I have currently learned (or think I have ;)): Change original variable passed as argument: ByVal = can not...
View ArticleLearning differences between Early Binding & Late Binding
I am trying to learn the important differences between using Early & Late binding. Below is a summary of what I have noted so far: Reference Libraries: Early = Required, Late = Doesn't useSpeed:...
View ArticleFunction with 2 variables
Hi, I just got started with VBA and I think Could you help me out with this one? I have a function which I originally intented to have 1 varible. Code: Sub firstsub() For Row = 1 To 100...
View ArticleLearning about Immediate If function in VBA (IIF)
I am curious about the IIf. As I understand, IIf is an if function that checks for both true & false conditions. This seems a disadvantage to me because 1) evaluating both conditions causes the...
View Articlehow to find several criteria in the same cell?
how to find several criteria in the same cell? I have some criteria in some cells, I need to be found these criteria within the same cell. See my template file Attached Files...
View ArticleSpeeding macro transfering data in to vb and back
Hey Fellows, Any ideas on how to implement the following speed tip "Another thing you should list before If all else fails is proper transfer of data from Excel to VBA and back. Dont read and write...
View ArticleAssigning Data Ranges in Automated Chart Creation
Hi Everyone, I have a good one for you, attached I have file from which I need a method to create standardized charts from a data set. I simplified the file to make it easier to understand....
View Article[SOLVED] Somewhat Urgent: Find all matching values and output the...
Ladies and Gentlemen, I have about 5000 lines of database that needs to be separated into about 80 different sheets based on particular values. Below is the code I have attempting to use "Find" in...
View Article