Multi sound generator
I have a trading program running in excel which tracks trading volume which produces 5 values in 5 cells running in real time. We have these 5 values being charted, but it would be helpful if somehow...
View Article[SOLVED] DO UNTIL.... beginner question
Hello, I have a do until loop question. Currently I have... Code: Sub RandLoop() Calculate Do Until Cells(4, "H") + Cells(5, "H") <= Cells(1, "G") Calculate Loop End Sub This works great!...
View ArticleDeleting a TextBox (TextFrame)
Help needed, please... I have the following VBA code that generates a textbox in an Excel spreadsheet: Code: Dim TBox1 As TextFrame Dim boxLeft As Double, boxTop As Double boxLeft = currentcell.Left...
View ArticleHow to select and extract cells containing any word from a list
Hi guys, I have a file with several sheets containing data in the following format: Code: For Application Development & Delivery Professionals Report:Market Overview: Database Security, 2011...
View Articlehelp with merged cells in vb
Hi guys. I normally just scour the se forums and have been able to work out an answer to everything, up until now. :( So this is actually my first post here. I have a problem that im hoping you can...
View ArticleVBA to insert rows in named range only
Hi All, I have attached the following code which allows the user to insert a user-defined number of rows in a sheet, however, I would like to control this insert function to a specified name range. Any...
View ArticleUserform Textox multiline ????
Hi, I have created a Userform Text box to input customer details and contact numbers. The plan was for the textbox to be multiline, as you would enter an address and telephone number. This textbox...
View ArticleMacro to update database, Match Cell value from Sheet 1 in Sheet 2 then copy...
Hey guys For the last few days i have been trying to build a macro with limited knowledge, i have looked through countless threads but still not luck I have a excel spread sheet with Sheet 1 being...
View ArticleMacro to get the data exported to an excel from Outlook emails and or...
I get 100's of outlook attachments in an email from my vendors. I need to save those on a folder in my desktop and then open each to check for data. Is it possible to use a macro to get the data...
View ArticleSimple Range calculation
Hello, I would appreciate help on trying to solve a calculation problem I am having in trying to use a variable in a Range definition. I continue to get an error when I run this simple program. Here is...
View ArticleUse EXCEL VBA to load AutoCAD reference files
How can I use Excel VBA to determine the AutoCAD versionin use and then automatically load the appropriate reference files? I have set up a spread sheet that allows Project Managers to define the...
View ArticleWhat's wrong with my code?
I am suppose to debug this but I just dont know. Sub Button1_Click() Range("C24").Value = myTotal Range("C8:C24").Select myTotal = 0 For Each myNumber In Selection myTotal = myTotal + myNumber.Value...
View ArticleHow to create a scalable method to hide and unhide columns
Hello, This is my first post to this forum, so thank you in advance to all the experts here. I have a prototype that hides and unhides columns in my spreadsheet based on inputs. However, I expect the...
View Article[SOLVED] Optimizing an old favourite!
We created this together we can speed it up together! Originally this was built to run of an email received daily which was about 1000 rows. Now I’m being asked to back date it so we can store the...
View ArticleHow to copy data from different excel workbooks into a sheet
Hi, Am new to this forum and need a little help. I am trying to make a master database from approx 700 excel workbooks with 2 sheets in them. I want to copy some rows and column from the first sheet of...
View ArticleTricky. Upon deactivating a ws, trying to launch a form.. can't pass ws name...
Trying to create a TaskManager: create some tasks, each of which has its own worksheet. Each worksheet has a series of steps, with a Y/N drop down to check if each step is complete. When the user...
View Article[SOLVED] VBA Userform combobox diplicate entries
Hi, I trust all is well? I have a userform that allows the user to enter new vehicle numbers and it is all working fine. Now i want to an exit event on a txtbox that will look if the number doesn't...
View ArticleVBA Save a file with filename and last Sundays date.
Hi This is what I have in my macro which saves the file as Weekly Graphs20121204.xlsx (today's date) ActiveWorkbook.SaveAs Filename:= _ "X:\11 Reporting and Analytics\Weekly Graphs" & Format(Date,...
View ArticleHow to get the value of a cell which is having a formula
Hi, I am new to macro development. I wrote a macro to combine excel sheets in a folder to a make a master file. I did it successful. The issue i am facing now is that i can not fetch a value from a...
View ArticleHelp with variables
I'm trying to merge two macros. the first I found here, the second I recorded. The first section has variables assigned, while the second uses file names. I want to get rid of the file names and think...
View Article