Skip to main content

Posts

Getting Started with Excel

  When you open Excel, you will see this screen that will allow you to either open a new workbook or a previously saved workbook. Open Blank Workbook  – Clicking here will allow you to open a new blank workbook in Excel. Recent Workbooks  – This is a quick access area that will show you the last few Excel workbooks you’ve had open recently and allow you to reopen them. Open Other Workbooks  – Clicking this will allow you to open other Excel workbooks not appearing in the recent list. When you open a new blank workbook in Excel, This is what you’ll see. These are the main areas of an Excel workbook. Quick Access Toolbar  – This area is an “easy access” place that will allow you to perform frequently used actions such as save a workbook, undo the last command, redo the last undone command, check spelling etc… The items in this area can be customized to your preferences. Ribbon Tabs  – This is the tab organisation of all the commands in Excel’s ribbon structur...
Recent posts

Excel Terminology

  Cell A  cell  is the basic building block of a worksheet. Each worksheet contains a grid of cells in a 1,048,576 row by 16,384 column arrangement. Each cell can store data such as numbers or text or it can contain the results of a formula. Range A  range  is simply any collection of cells. Workbook A  workbook  is simply another name for your Excel file. Worksheet A  worksheet  is where Excel stores all your text, numbers and formulas. Each workbook contains at least one worksheets but can contain as many as you need subject to your computers memory restraints. Ribbon The  ribbon  is Excels graphical menu interface for commands you can perform. Commands are organized into different tabs and groups within tabs. These groupings Function A  function  takes input values and returns a calculated value to a cell. Excel has many functions available to do many types of calculations such as time and date functions,...

Mail_ReceivedOrNot_Mailed मेल प्राप्त हुआ या नहीं मिला

  Mail_ReceivedOrNot_Mailed Formula Used:- ="\\pgarg\Pk_Sharing_Folder\OutlookSaveDSRAttachment\Delhi_Ncr\"&TEXT(Q1,"DD-MM-YYYY")&"\"&"*" =IFERROR(@INDEX(List_Delhi_NCR,ROW()-2),"") Sub SetReminderMail_Delhi_NCR() Dim Sdate As String Dim sWorkbook As Workbook Dim sWorkbook1 As String Dim sWorkbook2 As String Dim wb As Workbook Dim objApp As Object Dim ws As Worksheet Dim destWB As Workbook Dim Path As String Dim sh As Object                  Application.DisplayAlerts = False         Application.ScreenUpdating = False 'Delete all file from folder temp2         On Error Resume Next         Kill "E:\Pkgarg_Record\Pkgarg_Final_Cril_Report\temp\*.*"         On Error GoTo 0 'Process start         On Error Resume Next         Set wb = Workbooks("\Mail_ReceivedOrNot_Mailed\Mail_ReceivedOrNot_Mailed.xlsm")  ...

OUTLOOK PROCESS FOR MAIL DOWNLOAD WITH USERFORM USERFORM के साथ मेल के लिए डाउनलोड प्रक्रिया

OUTLOOK PROCESS FOR MAIL DOWNLOAD WITH USERFORM For ThisOutlookSession Sub Call_SaveAttachment_UserForm() SaveAttachment_UserForm.Show False End Sub For Reminder in  ThisOutlookSession Private Sub application_Reminder(ByVal Item As Object) If TypeName(Item) = "TaskItem" Then     Dim myItem As TaskItem     Set myItem = Item     If myItem.Subject = "run macro SaveAttachment_DelhiNcr" Then          Call SaveAttachment_DelhiNcr          Else             Call SaveAttachment_Outstation          End If     End If           End Sub 'Private Sub application_Reminder(ByVal Item As Object) 'If TypeName(Item) = "TaskItem" Then  '   Dim myItem As TaskItem   '  Set myItem = Item    ' If myItem.Subject = "run macro SaveAttachment_Outstation" Then          'Call Save...

Keyboard shortcuts for Google Sheets

Keyboard shortcuts for Google Sheets To see a list of keyboard shortcuts in Google Sheets, press Ctrl + / (Windows, Chrome OS) or ⌘ + / (Mac). To search the menus, press Alt + / (Windows, Chrome OS) or Option + / (Mac). Common actions Select column Ctrl + Space Select row Shift + Space Select all Ctrl + a Ctrl + Shift + Space Undo Ctrl + z Redo Ctrl + y Ctrl + Shift + z F4 Find Ctrl + f Find and replace Ctrl + h Fill range Ctrl + Enter Fill down Ctrl + d Fill right Ctrl + r Save (every change is saved automatically in Drive) Ctrl + s Open Ctrl + o Print Ctrl + p Copy Ctrl + c Cut Ctrl + x Paste Ctrl + v Paste values only Ctrl + Shift + v Show common keyboard shortcuts Ctrl + / Insert new sheet Shift + F11 Compact controls Ctrl + Shift + f Input tools on/off (available in spreadsheets in non-Latin languages) Ctrl + Shift + k Select input tools Ctrl + Alt + Shift + k Search the menus Alt + / Format cells ...

VBA Coding For Login Form लॉगिन फॉर्म के लिए VBA कोडिंग

VBA Coding For Login Form Need  TextBox Name = txtUserName TextBox Name = txtPassword Button Name = cmdSubmit Button Name = cmdClear Button Name = cmdExit & One Excel Sheet which have User ID & Password ----------------------------------------------------------------------- Private Sub cmdClear_Click() txtUserName.Value = "" txtPassword.Value = "" End Sub -------------------------------------------------------------------------- Private Sub cmdExit_Click() ActiveWorkbook.Close savechanges = True End End Sub ---------------------------------------------------------------------------- Private Sub cmdSubmit_Click() Worksheets("User").Range("A1").Value = txtUserName.Value Worksheets("User").Range("A2").Value = txtPassword.Value If (Worksheets("User").Range("C1").Value = True) And Worksheets("User").Range("C2").Value = True Then     MsgBo...