Save .xlsx files in a folder to .csv files
I tried this script to convert xlsx files to csv.I want the old files to be in the folder and the name on csv file to be exact as xlsx file.I am getting . extra on the csv extension like...
View ArticleIs it possible to conditionally format cells and link them to a filtered...
I have a workbook with 2 sheets. The first sheet has a horizontal calendar in it with days across the top, and then totals for people working the day shift, night shift, and people on vacation. The...
View ArticleDynamically apply background color of excel rows using c#
I have exported an excel document. In that, I have to apply the background color of the entire row based on some conditions. For example, If I have 1000 lines in the excel, I want to apply the...
View ArticleVBA Error "Object variable or with block variable not set "
Private Sub LoginMasuk_Click() Dim Password As String Dim Level As String Dim pass As String pass = MD5(TextBox2.Value) Set WsUserName = Sheets("Data") Set RgUserPas = WsUserName.Range("A2:A20") Set c...
View ArticleGetObject Fails while CreateObject Works
I recently got a small CG software package from my friend his father wrote about 30 years ago. It has a window where one can create and render some solid primitives. Interestingly, it has a VBA...
View ArticleHow to make csv file disabled with R1C1 in python
I am using a pandas script to read some values from a .csv file, However, the file I have always enabled with R1C1 under formulas, how to disable this permanently using python
View ArticleDo Excel versions without Power Query / Get and Transform have access to the...
I'd like to know if a user can use a QueryTable created via vba to retrieve data if their version of Excel does't have access to Power Query / Get and Transform if on Windows or MAC.
View ArticleGet SUM from CATEGORY and by MONTH
So i'm trying to sort some data from a form in google sheets. I need to sort the data by the category. and by the month. So far I have been able to sort these individually but not in the same cell. my...
View ArticleWhile debugging VBA code, i am getting an erorr saying "Object required for...
Sub copyNonblankData() Dim erow As Long, lastrow As Long, i As Long lastrow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Row For i = 2 To lastrow If Sheet1.Cells(i, 1) <> "" Then ' i'm assuming the...
View Articleconditional remove duplicates
I have a list where i want to remove the duplicate where "Date of Termination (Work)" column is the latest or null. sample data Id No Name Surname Date of Employment (Work) Date of Termination (Work)...
View Articlehorizontal scroll bar have become very small like I fill a huge number of...
I opened a new file and created an active-x button and saved file as macro enabled file but I noticed that horizontal scroll bar have become very small like I fill a huge number of column with data. I...
View ArticleAuto Grouping New Values
Currently I have a pivot table connected by several external connections that is needed to be refreshed regularly. After refreshing, new values sometimes shows up and I need to group this new values...
View ArticleUsing Excel solver (or other method) with a common objective in multiple...
I am struggling with quite a complex problem in which I think I may be able to solve or at least partially solve using the Excel solver tool.I am trying to set up a design of experiments analysis in...
View ArticleInsert Multiple Rows in Excel- Macro Running very slow
Hi Some one please help me to correct the below VBA. The VBA is working fine but its taking more time to insert rows. i am normally insert more than 500 line items, its updating one by one and taking...
View ArticleShow text if multiple cell values are True
I want a formula for column E3 depend on column A3,B3,C3 and D3. If multiple columns show yes or single column show yes I want show as below in pink. Need to combine shctin names which show...
View ArticleHow do I create a status bar in vba while the user is waiting to update a web...
I am an amateur coder and I have the following web query table updates automatically launched in the activate section of the sheet. But I would like to be able to show a status bar of some sort so user...
View ArticleReading Multiple tables (with irregularities) and combining them in...
Below is my input excel sheet. It can have many tables distributed sparsely.As an example, consider the below excel sheet. If you find this tough, you can ommit Meta_data 1/2 part.Input file:Meta_data...
View ArticleCreating a funnel chart with multiple variables
I am trying to create a funnel chart using Excel. I am aware of how to create a funnel chart with one variable but I am trying to create a funnel chart which splits each bar of the funnel into two...
View ArticleParse excel table using C#
I have a file from which I need to write data to a database. The file structure is complex (for example, the value of cell C6 depends on Company name1, Type1, Section1). How to parse it to fill the...
View ArticleVBA UserForm: How to access a ListBox by name?
I have a UserForm with multiple ListBoxes on it and need to access a particular ListBox by name (and not directly by an object reference). I'm trying to follow the recommendations from this post but do...
View Article