Load multiple excel files in Chrome
Chrome version: 79.0.3945.130When using a sheet js library in my Microsoft Custom Visual app I've encountered the following issue. private exportAnExcel(data: any, fileName: string){ var workbook:...
View Articlesearching range for first cell with specific font attributes
I am searching a range for the first cell with specific font attributes. I have looked at other solutions to similar problems and followed their example (e.g. Searching for Bold formatted Cells), but...
View ArticleDistinguishing cells in a row in Excel
I have an excel sheet as shown in the picture I want to get the years where there is a x symbol for each row.
View ArticleCreate a folder in Sharepoint from Excel
I had previously set up VBA to automatically create a folder in Explorer if it didn't exist, and open the folder having set a hyperlink to a file path set in Sheets("Costs, etc").Range("D5")Now however...
View ArticleUsing Input box for all variables in countif vba
I have tried to code a macro where a search is conducted for a specific text. A)The column to search in, B)The column where the result should appear and C) The text for which the search is being...
View ArticleVBA for filtering cells in a row based on another cell value in the same row
I have an excel sheet with numbers in each cell. I want to eliminate the cells containing values which are larger than a specific value, different for each row, for example in the pictureI want to...
View ArticleDisplaying Timed Message Boxes
I have a subroutine that makes the message-box disappear after certain amount of time. The Sub works fine on it's own. Sub MessageBoxTimer() Dim AckTime As Integer, InfoBox As Object Set InfoBox =...
View ArticleExcel 2010: entered data do not show on protected sheet on shared workbook
I have a shared workbook with a vba project. The user should enter some info on a userform which is transferred to a protected sheet when the user hits a submission command button. The issue is that...
View ArticleHow append data in SQL from Excel through python
Can anyone help me. I want to write a script in python by which i could append data from Excel to SQL.
View ArticleMultidimensional Array redim
Once again I need some help :)I have a List of values And for each line it should check if there is another row where the values of column D and E are identical to the current row. So all values where...
View ArticleTrigger a function when an excel file in my Google Drive is overwritten [closed]
I have an excel xlsm on my computer that is updated every morning and overwrites another workbook with the same title on the google drive folder, uploading it to Google Drive itself. I have to work...
View ArticleCheck availability of folder/files
Sub CWSSCheck() If ActiveSheet.Name = "Position_by_Fixture" Then Call FileCheck ElseIf ActiveSheet.Name = "Group_PositionList" Then MsgBox "This is the Group Position List. Convert the Shelfstock to...
View ArticleHow can I speed up xmlhttp requests (VBA)? Should I be using arrays?
For my work, I regularly need to compare a table of ~2000 meds to a website to see whether their substance IDs (an 8-digit number) still exist / have changed. I tried to automate the process using VBA...
View ArticleChange cell background colour for highest value for each group
I have conditional formatting for Column C where the cell background colour turn red for highest value in Column B. I have Column A with dropdown to select Groups(Groups 1 - 6). How to make colour turn...
View ArticleFill the whole container of grouped shapes - Excel
I have create some shapes in Excel, group them together and i can not find how to apply fill color on the whole group. Not on the shapes but on the background. Any help?
View ArticleHow to pass discontinuous range of cells from Excel to ExcelDNA function
Consider such ExcelDNA function definition:[ExcelFunction(Name = "Fnc1", Description = "Fnc1")] public static object Fnc1( [ExcelArgument(Name = "Arg1", Description = "Arg1", AllowReference = true)]...
View ArticleFunction to split a string into multiple characters
I want to create a custom function that takes the selected parameter and splits its content on different cells.example : A1=ABCDEbecomes B1=A, C1=B, D1=C, E1=D, F1=Eso this is what I tried : Function...
View ArticleMacro to Insert VBA code automatically from Personal.xlsb to one predefined...
I just wonder if there is way to run a macro from Personnal.xlsb in order to insert not only automatically a code in the Sheet3(stack) of my active workbook called but also to run the code.Thanks in...
View ArticleRun-time error '1004': Microsoft Excel cannot paste the data
I have looked up the question and have seen several solutions addressing things like Select or having protected worksheets, none of which apply to me here. For various reasons, I can't post the entire...
View ArticleTrigger same macro with different command button with Button properties
As the subject suggest, I have build a macro that will need a variable inputSub GetFile(Account as String) Currently i am setting multiple sub to call the script and assign them to different command...
View Article