Posts Tagged ‘excel’
Thursday, September 10th, 2009
J.B. needs to create a new worksheet for every customer listed on the summary worksheet. He asks if there is an Insert Worksheets command. While there isn’t, you can create one with a few lines of VBA code. Episode 730 shows you how.
This blog is the video podcast companion to the book, Learn Excel 97-2007 from MrExcel. Download a new two minute video every workday to learn one of the 377 tips from the book!
Duration : 0:3:27
(more…)
Tags: accounting, business, excel, MrExcel, spreadsheets, technology, tutorial, vba
Posted in worksheet | 3 Comments »
Thursday, September 10th, 2009
This lesson takes you through the basic process of subtraction in Excel. It is advisable to enlarge the screen to fullscreen size in order to see the workings of Excel properly.
Dedicated to the late John Hooton, Great Tutor at the University of Westminster, who gave me a love of Excel.
Duration : 0:1:28
(more…)
Tags: excel, Hooton, i-TEACH-u, John, Of, subtraction, university, Westminster
Posted in subtraction | 5 Comments »
Monday, September 7th, 2009
Rather than create an invoice worksheet from scratch, download a free one from Office Online. Episode 742 will show you how.
This blog is the video podcast companion to the book, Learn Excel 97-2007 from MrExcel. Download a new two minute video every workday to learn one of the 377 tips from the book!
Duration : 0:2:8
(more…)
Tags: accounting, business, excel, invoice, MrExcel, office online, spreadsheets, technology, template, tutorial
Posted in worksheet | No Comments »
Friday, September 4th, 2009
How to delete and rename worksheets in Microsoft Excel; learn more about spreadsheet software in this free instructional video.
Expert: Gary Zier
Bio: Gary Zier, originally from Florida, is a systems administrator with 10 years of computer networking experience and an expertise in conditional access security systems.
Filmmaker: Gary Zier
Duration : 0:1:52
(more…)
Tags: beginner, excel, how, Microsoft, software, Spreadsheet, to, tutorial, use, video
Posted in worksheets | No Comments »
Tuesday, September 1st, 2009
http://www.TeachExcel.com
How to protect a worksheet and workbook in excel. This will prevent unauthorized people from editing, deleting, or changing data in excel.
Follow along with the spreadsheet used here and get more stuff including templates, macros, keyboard shortcuts, etc. on the website:
http://www.TeachExcel.com
Duration : 0:7:44
(more…)
Tags: cells, excel, how, in, locking, passwords, protecting, Protection, security, tabs, to, workbooks, worksheets
Posted in worksheets | No Comments »
Thursday, August 20th, 2009
James asks how he can combine data from all rows of all worksheets into a single worksheet. 11 Lines of VBA code will do the trick. Episode 636 shows you how.
This blog is the video podcast companion to the book, Learn Excel from MrExcel. Download a new two minute video every workday to learn one of the 277 tips from the book!
Duration : 0:4:29
(more…)
Tags: accounting, business, excel, MrExcel, spreadsheets, technology, tutorial, vba, worksheet
Posted in worksheets | No Comments »
Friday, August 14th, 2009
See how to create a hyperlink from one sheet to another sheet in the same workbook.
Duration : 0:3:0
(more…)
Tags: another, college, Community, excel, excelisfun, from, Gel, Girvin, Highline, hyperlink, in, Mike, One, same, sheet, to, workbook
Posted in worksheet | 2 Comments »
Saturday, August 8th, 2009
See how to Copy or Export only visible Excel worksheet data retaining all formulas, subtotals and worksheet formatting and deleting all hidden rows and hidden columns.
Duration : 0:6:34
(more…)
Tags: Copy, Copying, Cut, Data, DPPI, excel, export, Exporting, EZ-Format, EZ-Split, Filters, Formula, formulas, Microsoft, Outlines, Paste, Spreadsheet, Subtotal, Subtotals, Totals, Visible, worksheet
Posted in worksheet | No Comments »
Wednesday, August 5th, 2009
To use the consolidate feature in Excel 2007 click on the data tab and then select consolidate. You can consolidate or summarize data from multiple worksheets in the same workbook or different workbooks. You can consolidate, for example, the sales figures of all your branches whose data you have kept in different worksheets. You can use the consolidate feature to summarize the salaries of your employees over a year. You can not only add data but you can also use functions like max, min, average, etc with the consolidate function.
Duration : 0:2:38
(more…)
Tags: 2007, consolidate, excel, free, training, videos
Posted in worksheets | No Comments »
Tuesday, July 28th, 2009
Userforms make data entry moe intuitive. The coding for transfer of data from the userform to the Excel worksheet is easy to learn. The code for the ‘AddData’ button is reproducd here for your ready reference. For more details you can log on to familycomputerclub.com.
Dim eRow As Long
Dim ws As Worksheet
Set ws = Worksheets(”data”)
‘find first empty row in database
eRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
‘check for a name
If Trim(Me.txtName.Value) = “” Then
Me.txtPart.SetFocus
MsgBox “Please enter a name”
Exit Sub
End If
‘copy the data to the database
ws.Cells(eRow, 1).Value = Me.txtName.Value
ws.Cells(eRow, 2).Value = Me.txtSalary.Value
ws.Cells(eRow, 3).Value = Me.txtHRA.Value
ws.Cells(eRow, 4).Value = Me.txtPF.Value
ws.Cells(eRow,5).Value=Me.txtMed.Value
ws.Cells(eRow,6).Value=Me.txtPkg.Value
‘clear the data
Me.txtName.Value = “”
Me.txtSalary.Value = “”
Me.txtHRA.Value = “”
Me.txtPF.Value = “”
Me.txtMed.Value=”"
Me.txtPkg.Value = “”
Me.txtName.SetFocus
Duration : 0:3:21
(more…)
Tags: automatic, calculations, excel, familycomputerclub, training, userforms
Posted in worksheets | No Comments »