Add legend to each point with VBA
I would like to programmatically add a legend to some points in my excel chart as you can see below.I can already control each point color so I thought it wouldn't be so hard, however I can't find how...
View ArticleVBA : Textbox Searchbar and Listbox - 3 - R1
We have 4000 diffrent materials/equipments in our stock.We are using VBA stock macro which is integrated with barcode scanner. Via this stock macro, we make all the stock process.Over this VBA stock...
View ArticleRunning Excel macro from Windows PowerShell script
I want to run below Excel macro from Windows PowerShell script.Public Sub LogInformation() Dim strFile_Path As String strFile_Path = Application.ThisWorkbook.FullName & ".txt" Open strFile_Path For...
View Articlehow to run macro i recorded for entire column to another column without code?
in Excel I have 22000 rows with '0' formatted as text. I can select entire column and click 'convert to number'. but excel freezes for a long time. I found a way to do it simpler:insert 1 as a digit to...
View ArticleExport Images in Excel File via NodeJS
I have a .xlsx file with 1100+ images in 1 column, and different data in the other columns. i need to export the images to a folder and renamed after a row in the sheet.Picture of the excel sheetimage...
View ArticleHow do I only allow Sorting on a Filtered column?
I'm trying to find out how I can use the filter button to only choose sort functions, otherwise it has a ton of numerical values that are completely irrelevant to select.All I need is to be able to...
View ArticleFramed checkbox values on multipages wont print to cells
I am not getting error messages, but my code doesnt print the checkbox values from Multipage(1) to (3) to the assigned cells and I cannot figure out why. MultiPage1(0) prints as it's supposed to do....
View ArticleExcel VBA IE HTML Webpage dropdown list in element
I am working to auto-fill a form on a website and not able to get through this one field which is a dropdown list inside a element.The HTML code appears as below, when I manually select the value on...
View ArticleGetting a value based on the latest date for another given value
I have a table like thisI want to lookup the latest amount for a particular tenant. E.g.The formulae in B2 should return £20.00The source data is not sorted. There will only be only 1 payment per day...
View ArticleIssue with MATCH and TIME formulas for Excel
Some values, such as when the MATCH formula is trying to match '0 hr 1 min 00 s''0 hr 2 min 30 s' and'0 hr 5 min 30 s' produces and N/A message. I have used the EXACT formula to check if the cell...
View ArticleI have to run my code several times for it to execute entirely
I'm not sure whether it's because I'm using a mac or the code is wrong, but the rows aren't identifying properly, and therefore not deleting or pasting it into the other spreadsheet. I have to run the...
View ArticleImprove calculating time for show several different result from a research
The aim of this sheet is to show every results (even if it's different) in range D:D from the spreadsheet in A1:B11 with the accurate city in D1.This is my formula in D2...
View ArticleVBA Insert and Link Pictures
What I want to do, is to insert pictures into an excel worksheet. Because there are a lot of pictures, I want to do this using a VBA Sub. These pictures are updated on a regular basis (Graphs that...
View ArticleHow to compare same cell and another for differences
basically I want to check rows in excel (automatically), scan a full database and return the rows where the values in one column are the same and in another aren’t the same.Example:A B C ----- 1 7 2 2...
View ArticleExcel : A call to a UDF recalculates all cells on a sheet
I have a function implemented in VBA module of an Excel Workbook. If the Calculation Options set to "Automatic", then whenever I call that function, all other cells on the worksheet also seem to get...
View ArticleSet Alignment of cell in range based on text value in cell
I'm new to VBA and I have a spreadsheet where I am trying to format the text to right align if the value in the cell equals "Total For The Month: ". I just need it to work for Worksheet1 in the...
View ArticleCopy Files using VBA [closed]
Hello everyone and happy new yearHere is my question so simple: In column A I have file name In column B I have source folder In column C i have destination folderNeed a macro To copy files of column A...
View ArticleExcel pivot table that counts non-numeric data?
I'm helping a coworker with a problem and I've run into a bit of a wall myself. He receives a CSV file from a survey of student responses after a set of classes are completed, and he wants to generate...
View ArticleDeselecting a chart in Excel VBA
In reference to the following file.xlsm:where Sheet1 (1) is a Sheet, Plot1 (2) is a Graphic-Sheet and the button (3) refers to the following Macro:Sub plot() ReDim blue(1 To 5, 1 To 2) ReDim red(1 To...
View ArticleAdd a checkbox if a cell is not empty
I have a range of cells on C1:C400 that change content according to an initial choice from a list. Sometimes, a cell can be empty depending on the choice made. I need to add a checkbox to the right of...
View Article