September 9, 2009 - 1:30 am
See how to use the IF, AND and OR functions! See how to make logical formulas. You can check to see if a cell is blank, whether it is above a certain limit, or whether the cell contains text!
See how to make the labels on your Income Statement change depending on whether or not there is a Net Loss or a Net Income. See how to use the IF, AND, and OR function to evaluate a customer’s credit.
Excel Magic Trick 167p1 IF function formula: 12 Examples!
Excel Magic Trick 167p2 IF function formula: 12 Examples!
Duration : 0:7:39
(more…)
Tags: .net, and, Blank, colle, community, credit, excel, FALSE, formulas, Gel, Girvin, highline, if, income, ISTEXT, logical, Loss, Mike, OR, TRUE Posted in if statement |
Using an IF Statement to Validate text placed in a text box on button press:
Here’s the code I used in this:
Dim Captain As String
Captain = TextBoxCaptain.Text
Captain = Captain.ToUpper
If Captain = “PICARD” Or Captain = “KIRK” Or Captain = “ARCHER” Or Captain = “PIKE” Or Captain = “JANEWAY” Then
MsgBox(”Indeed, Warp Factor 9!”)
Else
MsgBox(Captain & ” has never been a Captain”)
End If
Have fun!
Duration : 0:7:25
(more…)
Tags: .net, 2005, 2008, basic, Box, Button, else, EndIF, Express, Font, Format, if, Label, Microsoft, MS, Studio, text, Then, vb.net, Visual Posted in using statement |
I explain how to use a Select Case statement using a ComboBox and a button
Duration : 0:2:52
(more…)
Tags: .net, basic, case, select, statement, vb, vb.net, Visual Posted in select statement |