Unable to code VBA for Mailto and Hyperlinks
Just to get things out of the way, its my 1st time doing this type of coding FYI.Ok so here is the prob:I am using excel 2010I am trying to create a hyperlink that includes a mailto in it to create...
View ArticleLooping a formula VBS
Sorry if this has been posted before but really scratching my head on this one.I have an excel formula such as below which is in cell O14, which I want to loop down until the text in the cell in the...
View ArticleVBA Add-in Vlookup ThisWorkbook.Range
I am attempting to create an add-in with a VLOOKUP from a range on the add-in sheet. This is too long to do with case (3000+ lines) and I don't want to have to have the user store this file. Function...
View ArticleExcel VBA downloading file from url hyperlinks
I have 300+ hyperlinks listed on an excel worksheet. I want to use Excel VBA to download everything from each link to my computer. I am using this code, however it is not downloading the excel file or...
View ArticleHow can I project a current savings number to future dates?
I have a projects database that has the project name, various project stages (S1, S2, S3), expected dates when the project should hit the stage, and the projected revenue from the project. For example,...
View ArticleSetting clickable anchor links within Excel
This might be a VBA thing, but I honestly don't know.I have a summary tab that pulls aggregated data from other tabs in the workbook. I'd like the end-user to be able to click on different areas (not...
View ArticleHow to Match just part of a cell's value instead of an exact match in VBA for...
I have already written a script that works fine for exact matching, but I would like to rewrite it to allow for the user to type only part of one of the criteria. The userform should still recognize...
View ArticleHow do I put links in spreadsheets to django that don't redirect to the login...
Apologies, there is probably already responses to this but I can't even isolate where the problem is - Django or ExcelI have an Excel spreadsheet that I've created with urls to Django resources e.g....
View ArticleShow MsgBox only once
I have a VBA script, that goes as follows: 1, it will run when particular sheet is selected 2, it will check if condition is True 3, if so, show MsgBoxPrivate Sub Worksheet_Activate() Dim current As...
View ArticleHow to access the contents of an excel file stored in my model - django
I am developing an app in Django. I have a file model (let's say my_file_model) like this:class my_file_model(models.Model): file = models.FileField(upload_to='myDirectory/', blank=False, null=False)...
View ArticleCreating a Pivot Table in VBA, in Excel 2013
I wrote this code in VBA for creating a Pivot Table (Converted it from a Macro, acctually...), and it doesn't workDim wsTarget As Worksheet Dim rngSource As Range Dim pc As PivotCache Dim pt As...
View ArticleExcel isn't showing my union query when I try to pull in data from access
I had 2 queries that were pulling in similar types of data so I used a UNION ALL query to join them. However, now when I go to pull in the data from Access on my Excel workbook the query doesn't show...
View ArticleI am looping through a worksheet with activex objects, I would like to set...
Trying to Change the background colors on option buttons as well will be doing checkboxHere is codeSet sht = Worksheets(1) Dim objX As OLEObject For i = 1 To sht.OLEObjects.Count If...
View ArticleSaved Excel Document as a Text (Tab Delimited) file. Then renamed to .tsv....
Needing to upload this file and it needs to be in .tsv format. I saved the excel file as a text (tab delimited file). Went and renamed it to .tsv, and it switched to an excel icon (from a text pad)....
View ArticleHow to locate a subscribed internet calendar's folder path in Excel VBA with...
I am trying to get my code to list the events of a subscribed internet calendar from gmail. Currently the code does its job but only lists events created in the outlook app in the Calender Folder.Here...
View ArticleExcel: How to average all numbers in column B that have the same number in...
How can I calculate the average of all numbers in column H that have the same number in column C. For example how can I output the average of all H values that have a C value of 2?Many thanks!
View ArticleDisable Screen Updating, Auto Calculation in Excel from Access VBA
Can anyone help with getting the .application properties in an Excel workbook to run from Access VBA? I'm using an Access VBA to export data to Excel, open the file, and format the file (add formulas,...
View ArticleFinding "Pairs" in Excel
I'm trying to make a time-tracking excel spread-sheet. The current data headers I have look like this: Timestamp | Name | Task | TaskUniqueID | Start / Stop ?So basically the user just needs to scan...
View ArticleLooping VBA code to check for highlighted cells
I would like a code to check every cell in range A1:A14 and if the cell is highlighted say yes or no in column B. As shown here.Sub highlighted() Dim rng As Range Dim c As Range Set rng = ActiveCell...
View ArticleCopy rows from each Data Validation output
I am trying to copy and paste as values from cells (B:80:LJ80) on the same sheet from a data validation list of 29 values. The first row it needs to paste in is B32 and then I would like the 2nd output...
View Article