User Profile
Sameer_Kuppanath_Sultan
Brass Contributor
Joined 6 years ago
User Widgets
Recent Discussions
Excel Personal VBA to change to other Laptop
Hi All Please guide me on below. I have some set of Personal VBA using in Excel in My PC. I am going to change my PC, in which I need Same Macros available in my Excel as shown below, instead customizing the ribbon again in new PC excel. Can we create an Add Ins ? How to create it?659Views0likes0CommentsRe: Need to Highlight the range of Dates (Week) where today date is fallen
NikolinoDE Please See below table, today date 13-05-2022, which is fallen between 10-05-2022 to 16-05-2022 range in week 2 (Circled). What I need is a conditional formatting (Green), whenever the date fallen between range of dates. (Weeks).1.7KViews0likes3CommentsNeed to Highlight the range of Dates (Week) where today date is fallen
Hi I have a set of dates (7 days) set termed as Week-1,2,& 3. I want to highlight the cell range where today date has fallen. Can you please help WEEK 1 WEEK 2 WEEK 3 18-Dec-21 24-Dec-21 14-May-22 20-May-22 09-Jul-22 15-Jul-22 25-Dec-21 31-Dec-21 01-Jan-22 07-Jan-22 21-May-22 27-May-22 01-Jan-22 07-Jan-22 04-Jun-22 10-Jun-22 06-Aug-22 12-Aug-22 08-Jan-22 14-Jan-22 19-Mar-22 25-Mar-22 18-Jun-22 24-Jun-22Solved1.7KViews0likes6CommentsError show in VBA to create Zip files of a selected folder
Hi I have a code below for zipping a folder to a specified location to save. Sub Zipping_the_File() Dim source, zipfile As String source = "C:\Users\Documents\Client\" zipfile = "C:\Work Area\Common Files\NameOFZip.zip" CreateZipFile source, zipfile End Sub Sub CreateZipFile(folderToZipPath As Variant, zippedFileFullName As Variant) Dim ShellApp As Object 'Create an empty zip file Open zippedFileFullName For Output As #1 Print #1, Chr$(80) & Chr$(75) & Chr$(5) & Chr$(6) & String(18, 0) Close #1 'Copy the files & folders into the zip file Set ShellApp = CreateObject("Shell.Application") ShellApp.Namespace(zippedFileFullName).CopyHere ShellApp.Namespace(folderToZipPath).Items Do Until ShellApp.Namespace(zippedFileFullName).Items.Count = ShellApp.Namespace(folderToZipPath).Items.Count Application.Wait (Now + TimeValue("0:00:01")) Loop End Sub When I run the code, I am receiving below Pic (Error Pic 1), and when do debug it shows the below pic (Error Pic 2).Solved1.5KViews0likes1CommentLead Letter to be come when typing (Searchable Drop Down List)
Hi Every One I have table A and Table B with me. Table B is master list of items with prices. In Table A I need to put input item name, for that it will be difficult to enter full name every time from Table B. So that I need to use a data validation trick to enter the data. What I need is, whenever we enter first letter, in searchable area, suggested list of items from Table should appear. The Data entry man can choose the item to proceed. Is there any VBA of formula for this????2.2KViews0likes5Comments- 3.2KViews0likes0Comments
- 2.6KViews0likes0Comments
- 2.8KViews0likes2Comments
Data Extract from 1 Table to another
Hi All Happy New Year I have table 1, contains the data of meals when it starts and ends. I want to find the numbers of meals in Table 2 on each date based on Table 1 as per below image by using any formula or VBA Could any one can help on this issue in Excel983Views0likes2CommentsArranging data in row from multiple columns by avoiding Zeroes.
Hi All Greetings.. I have a data set below. I would like to arrange it in row by avoiding "0"s in cells like down below. Is there any formula I can use to do this process. I have attached the excel also for the reference.Solved1.2KViews0likes2CommentsDownloading Attachment from outlook by using VBA in excel based on time of sent
Hi I have the below vba code for "downloading mail attachment based on sender name". Some time the sender will send multiple files in a day itslelf, but I want to download first file he sent to me using the vba. (Based on time of Sending) What changes to be done in the code in this case. Sub DATA() Dim ol As Object 'Outlook.Application Dim ns As Object 'Outlook.Namespace Dim fol As Object 'Outlook.Folder Dim i As Object Dim mi As Object 'Outlook.MailItem Dim at As Object 'Outlook.Attachment Dim fso As Object 'Scripting.FileSystemObject Dim dir As Object 'Scripting.Folder Dim dirName As String Dim oFSO As Object Dim oFolder As Object Dim oFile As Object Dim f As Integer ' change 1 Dim inboxFol As Object 'Outlook.Folder Dim subFol As Object 'Outlook.Folder 'Some Set Ups Set fso = CreateObject(Class:="Scripting.FileSystemObject") Set ol = CreateObject(Class:="Outlook.Application") Set ns = ol.GetNamespace("MAPI") ' change 2 Set inboxFol = ns.GetDefaultFolder(6) 'olFolderInbox Set subFol = inboxFol.Folders("Operation") 'Finding the search item from Oulook Inbox For Each i In inboxFol.Items If i.Class = 43 Then Set mi = i If mi.Attachments.Count > 0 And InStr(mi.SenderName, "Ahmed") Then dirName = "C:\Work Area" If fso.FolderExists(dirName) Then Set dir = fso.GetFolder(dirName) Else Set dir = fso.Createfolder(dirName) End If 'Saving Attachment to a folder For Each at In mi.Attachments If Right(at.Filename, 4) = "xlsm" Then at.SaveAsFile dir.Path & "\" & "Daily Work Data.xlsm" End If Next at ' change 4 mi.UnRead = False mi.Move subFol End If End If Next i 'Setting Folder Set oFSO = CreateObject("Scripting.FileSystemObject") Set oFolder = oFSO.GetFolder("C:\Work Area") CreateObject("shell.application").Open ("C:\Work Area\Daily Work data.xlsm") End Sub28KViews0likes0Comments
Recent Blog Articles
No content to show