How to extract csv file or txt file from linux server into Excel sheet using...
Below is my code where I am able to login into linux server using Macro successfully and execute the file from path C:\Users\nt186017\Desktop\space_details.sh. But output file is generated on linux...
View ArticleRow count on the Filtered data
I'm using the below code to get the count of the filtered data rows in VBA, but while getting the count, it's giving the run time error showing:"Object required". Could some please let me know what...
View ArticleRemove accents while comparing excel files using python
i want to compare two excel files and delete rows with common names in the second file. the issue is that one list doesn't have accents while one does. i want to remove the accents in order to compare...
View ArticleNeed to retain text format in code to import all csv files in folder
I'm trying to import all csv files in a folder into new worksheets in an Excel file while retaining the text format. I pieced together some code through some research and have it nearly working the way...
View ArticleComparing and show the difference between data in two excel tables
I've tried alot of things and i'm going blind on this comparison-project. I keep feeling it's so simple, but i just can't get it to work and therefore i hope you clever people can help me out.I have...
View ArticleVBA: Getting run-time 1004: Method 'Range' of object '_Worksheet' failed. It...
This is the code: Sub RunFilter() Dim LastRow As Long, LastCritRow As Long, LastResultRow As Long Sheet1.Range("C31:AH365").ClearContents 'Clear Existing Results With Sheet2 If...
View ArticleUsing VBA can I retreive the content of a single Meta_Tag by Name?
Knowing the name of a Meta_tag, I want to retrieve the contents of that specific tag.I have tried the following:Set Answers = ie.document.getElementsByTagName("knowntag") This gives me an object to...
View ArticleCopy one sheet from one workbook to many sheets in another workbook, based on...
Windows 10 Enterprise Office 365 Extreme VBA noob Is it possible to have VBA code in one workbook, create a new workbook with multiple sheets, representing the workdays in a month, based on user...
View ArticleExcel VBA Applying Vlookup formula to next empty column
Sub GET_BHAV() Dim FinalWs As Worksheet, dataWs As Worksheet Dim FinalLastRow As Long, dataLastRow As Long, x As Long Dim dataRng As Range Set FinalWs = ThisWorkbook.Worksheets("Open") Workbooks.Open...
View ArticleExcel VBA Pritnig options
Can somebody please help me implementing code to change print orientation sheet depend selected case to my existing code. E.g. Case 1 to Case 5 if selected then print on Portrait orientation and if...
View ArticleVBA Macro cannot find folder path
I have written a macro (with the help of several internet sources) that will iterate through files in a SharePoint folder online and extract the needed info out of said folder, then move onto the next....
View ArticleExcel macros run through powershell but not when run by windows task manager
I have a script which checks a folder for excel files and then if this "threshold" is greater than 0 then a macro from another excel file is run that interact with these excel folders. When I run the...
View ArticleHow can I group data but generate dynamic columns?
I have a table of data which contains something like the below (but naturally far more rows) :+------+------------+-----------+----------+ | CODE | START DATE | END DATE | QUANTITY |...
View ArticleFor Each ... Next loop is finding names in Word doc, then input the names...
Hello Stackoverflow community.The code I need your help with, finds and extracts the counterparts names/surnames from the beginning of the word document, then it puts these names into a consecutive...
View Articlewhat's the best way to handle transferring data between proxied sheets?
I am currently trying to make a warehouse inventory management program in excel. I already have a giant procedural prototype that is functional, but I've recently been reading about OOP concepts on the...
View ArticleHow to open and set up 2 different windows in SAP using script in VBA
I want to open 2 SAP GUI windows and set up the same transaction, but with different information on it.I know with VBA/VBS it isn't possible to run these windows simultaneously (like other posts I've...
View ArticleImplementing an outlook macro in excel
I have the following macro in Outlook, and would like to use it frm Excel, how can I rewrite it that it will work from excel without an outlook macro being included?Dim objExcelApp As Excel.Application...
View ArticleExcel update column in table
I am using a table in Excel and needs support on 2 questions.Here are my 2 columns 'Date' and 'Status' with dropdown menus in a table 'Data'.I want to update the 'Status' column to "Ended" when 'Date'...
View ArticleFinding headers,copying in same order to another sheet
Is it possible to search by header column in VBA? Desired goal is when header is found, copy whole column to sheet2. Headers should be copied in order of their appearance in headers column. After 3...
View ArticleExcel Copy Hyperlinks Formula
I have a problem with excel hyperlinks-formula:I did an index search on a sheet B where i found results from sheet A. The results found in sheet A are hyperlinks on sheet A.Now my Problem is, that i...
View Article