+ Reply to Thread
Results 1 to 7 of 7

VBA If else statement

Hybrid View

  1. #1
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: VBA If else statement

    I not sure that I understand what you're doing, but I'll try
    Dim Msg1 As String
    Dim D As Integer
    Dim L As Integer
    Dim Ts As Integer
    Dim S As Integer
    Dim Ci As Integer
    Dim Cy As Integer
    
    Msg1 = ComboBox1.Value
    D = TextBox1.Value
    L = TextBox2.Value
    
    If Msg1 = "Size" Then
        Select Case D
            Case Is >= 0.25
                Ts = 0.001 + (0.006 + 0.005 * D)
            Case Is < 0.25
                Ts = 0.001 + (0.003 + 0.016 * D)
        End Select
        MsgBox Ts
    
    EsleIf Msg1 = "Straightness" Then
        S = L * 0.0087
        MsgBox S
    
    
    EsleIf Msg1 = "Circularity" Then
        'Can't tell what Size is, so can't correct
        Ci = 0.25 * Size
        MsgBox Ci
    
    ElseIf Msg1 = "Cylindricity" Then
        'S is ALWAYS 0  and Ci is ALWAYS 0 for this test
        '    if S is supposed to be L * 0.0087 then don't put it in the ElseIf above.
    
        Cy = S + Ci
        MsgBox Cy
    
    End If
    
    End Sub

  2. #2
    Registered User
    Join Date
    05-11-2010
    Location
    Portland oregon
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: VBA If else statement

    Thnak's for helping me out with this. Well I am trying to build a user form where it takes value from text box for size D and one for length L and I choose a process in a combobox like size, straightness, circularity and cylyindricity which have different formulas and are associated with each other. So when I enter a size and length and choose a process and hit the command button I want it to calculate the value. So D is a constant and ts, ci, cy are all results which I want to be able to calculate . I am not sure if you understand what i am trying to do? But i could use some assistance on this.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1