Excel -- fill in dates in pivot table
Let's say I have a list of upcoming tasks next week. I would like to count those tasks and see how many I have each day. However, I want to view the day even if there is no data on that day. Here's an...
View ArticleVBA Excel, how to click on a href link with javascript or some specific...
How to find and click on a href link using VBA in excel.More informationI tried many methods but failed. I am new in this VBA excel web scrapping and it is not so easy for me.Can someone tell me, which...
View ArticleA VBA code to transfer data from a sheet to another one
Here’s my problem, I’ve a table in sheet named « Formulaire du journal », in this sheet the user enter the informations and fill the table (screenshot 1), the informations of this table is trensfered...
View ArticleVLOOKUP from different workbook
I have 2 workbooks....OdysseyDeposit where my source data is and Civil Bank Accnt Recon which contains VLOOKUP to the OdysseyDeposit.Here is the VLOOKUP function that I am...
View ArticleCumulative Sum Formula using new Excel Dynamic Array Formulas
I'm using the new Dynamic (ie Spill) formulas in Excel. I want a dynamic array that is the accumulation or running total of another dynamic array.Let's assume I have the following dynamic data in...
View ArticleCross-worksheet cell comparison and update
I'm hoping someone can help me find out what I'm missing in this code...I'm a novice w/ VBA in Excel. What I'm trying to accomplish is: compare the value from one worksheet ("UserProf") column to a...
View ArticleExcel Add-In only works when doing a disable and enable
We are using a 3rd party Add-In in Excel which for some reason does not work on my machine but on everyone else's. The weird thing is that when you disable and enable the add-in, it starts working and...
View ArticleRun-time Error 1004 on my VBA Excel code - transfer data from one worksheet...
VBA Code to transfer value of one cell to another worksheetSub Button4_Click() Dim Description As String Worksheets("Job Order Format").Select Description = Range("C20") Worksheets("Job Order...
View ArticleRuntime-Error :"We can't do that to merged cells."
This is form design I want to use to provide data to a table below and vice-versa.Sub Cont_New() With Sheet1 .Range("R33").Value = True 'Contact Load .Range("R32").Value = True 'New Contact to True...
View ArticleExcel VBA delete ExternalData_* Range Names
I have a few connections that grabs data from the Internet to my Excel file. Each time the data is copied to the file, I get a range name like:ExternalData_1 ExternalData_2 ... I'm trying to delete...
View ArticleSummarizing data from multiple sheets
I have a google sheet like this example to track scores for disc golf:https://docs.google.com/spreadsheets/d/1uxDFXg2kivZWKICeVklugyXH1OWqsq_s5qXZYzgHkt8/edit?usp=sharingIt works great for tracking day...
View ArticleHow to pass variable to pivot table parameter?
I want to pass a variable into a value filter for a pivot table.The code gives me errors.I'm trying to put the x variable into Value1.Sub Macro1() '' Macro1 Macro ' x = "*" + Range("Sheet1!h17").Value...
View ArticleHow to use fonts having space in C# windows form to create excel workseet?
I am using an IEnumerable variable to create an Excel worksheet in C# windows form application. The problem is that I can set created worksheet font if the font name has 1 word, ex. 'IRNazanin', but...
View ArticleHow to continually run function to count yellow cells?
I've a function in Excel that adds up how many yellow cells there are in the row. Function CountColorIf(rArea As Range) As Long Dim rAreaCell As Range Dim lCounter As Long For Each rAreaCell In rArea...
View ArticleHow to prevent Excel UserForm from shrinking/expanding autonomously?
My Excel UserForms contain a variety of objects, including text boxes, combo boxes, radio buttons, etc. The UserForm and the objects on the UserForm shrink and expand when my laptop is on a docking...
View ArticleApache POI DataFormat limitations vs method invocations
Java 8 and Apache POI 4.x here. I've found evidence that you can only get 64K different data formats via dataFormat.getFormat(...). But does that mean you can call dataFormat.getFormat(...)any number...
View ArticleHow to import excell file to DataGridView from a specific row in C#?
I want to import excell value from 2nd row and on to the DataGridView but dont know how. If possible I want to keep the current existing data value in datagridview is not deleted so the imported data...
View ArticleExtracting data between two given dates
I have a table in excel having eight columns which includes year, date of deposit and total fees. Now, if date of deposit is between two given dates and it pertains to year 2019-20 then I am trying to...
View ArticleNeed to update selected columns in Excel
I need to update selected columns, I have code to do that but is updating all columns starting with i=7 to the columns I have selected, it is updating even the hidden columns. I will paste the code i...
View ArticleEnhancing the macro
I want to improve my Excel VBA macro that creates the file list and the macro that renames the file name on the file list.I made two Excel VBA macros. The macro named "Sub File_list" creates a file...
View Article