+ Reply to Thread
Results 1 to 1 of 1

Correct VBA CODE

Hybrid View

  1. #1
    Registered User
    Join Date
    12-23-2015
    Location
    france
    MS-Off Ver
    2013
    Posts
    41

    Correct VBA CODE

    Good evening I make a vba code for my project
    if I repter the same code for each line it takes time and can be more complicated
    anyone want to help me simplify the shortest code for all online for same example as I do


    this code is for only 2 ligne but ihave 13 ligne
    Private Sub TextBox1_Change()
    Dim A As Integer
    Dim B As Integer
    Dim C As Integer
    Dim D As Integer
    Dim B1 As Integer
    Dim C1 As Integer
    
    
    If TextBox1.Value <> "" And TextBox13.Value <> "" And TextBox37.Value <> "" And TextBox121.Value <> "" And TextBox25.Value <> "" And TextBox49.Value <> "" Then
    A = TextBox1.Value
    B = TextBox13.Value
    C = TextBox37.Value
    B1 = TextBox25.Value
    C1 = TextBox49.Value
    D = TextBox121.Value
    TextBox61.Value = (A - B) + ((0.5 * D) - C)
    TextBox73.Value = (A - B1) + ((0.5 * D) - C1)
    End If
    End Sub
    Private Sub TextBox25_Change()
    Dim A As Integer
    Dim B1 As Integer
    Dim C1 As Integer
    Dim D As Integer
    
    If TextBox1.Value <> "" And TextBox25.Value <> "" And TextBox49.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox1.Value
    B1 = TextBox25.Value
    C1 = TextBox49.Value
    D = TextBox121.Value
    TextBox73.Value = (A - B1) + ((0.5 * D) - C1)
    
    End If
    End Sub
    Private Sub TextBox49_Change()
    Dim A As Integer
    Dim B1 As Integer
    Dim C1 As Integer
    Dim D As Integer
    
    If TextBox1.Value <> "" And TextBox25.Value <> "" And TextBox49.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox1.Value
    B1 = TextBox25.Value
    C1 = TextBox49.Value
    D = TextBox121.Value
    TextBox73.Value = (A - B1) + ((0.5 * D) - C1)
    
    End If
    End Sub
    Private Sub TextBox13_Change()
    Dim A As Integer
    Dim B As Integer
    Dim C As Integer
    Dim D As Integer
    
    
    
    If TextBox1.Value <> "" And TextBox13.Value <> "" And TextBox37.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox1.Value
    B = TextBox13.Value
    C = TextBox37.Value
    D = TextBox121.Value
    TextBox61.Value = (A - B) + ((0.5 * D) - C)
    
    End If
    End Sub
    Private Sub TextBox37_Change()
    Dim A As Integer
    Dim B As Integer
    Dim C As Integer
    Dim D As Integer
    
    If TextBox1.Value <> "" And TextBox13.Value <> "" And TextBox37.Value <> "" And TextBox121.Value <> "" Then
    
    A = TextBox1.Value
    B = TextBox13.Value
    C = TextBox37.Value
    D = TextBox121.Value
    TextBox61.Value = (A - B) + ((0.5 * D) - C)
    
    End If
    End Sub
    
    Private Sub TextBox2_Change()
    Dim A As Integer
    Dim B As Integer
    Dim C As Integer
    Dim B1 As Integer
    Dim C1 As Integer
    Dim D As Integer
    
    If TextBox2.Value <> "" And TextBox14.Value <> "" And TextBox38.Value <> "" And TextBox121.Value <> "" And TextBox26.Value <> "" And TextBox50.Value <> "" Then
    A = TextBox2.Value
    B = TextBox14.Value
    C = TextBox38.Value
    B1 = TextBox26.Value
    C1 = TextBox50.Value
    D = TextBox121.Value
    
    TextBox62.Value = (A - B) + ((0.5 * D) - C)
    TextBox74.Value = (A - B1) + ((0.5 * D) - C1)
    End If
    End Sub
    Private Sub TextBox26_Change()
    Dim A As Integer
    Dim B1 As Integer
    Dim C1 As Integer
    Dim D As Integer
    
    If TextBox2.Value <> "" And TextBox26.Value <> "" And TextBox50.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox2.Value
    B1 = TextBox26.Value
    C1 = TextBox50.Value
    D = TextBox121.Value
    
    TextBox74.Value = (A - B1) + ((0.5 * D) - C1)
    End If
    End Sub
    Private Sub TextBox50_Change()
    Dim A As Integer
    Dim B1 As Integer
    Dim C1 As Integer
    Dim D As Integer
    
    If TextBox2.Value <> "" And TextBox26.Value <> "" And TextBox50.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox2.Value
    B1 = TextBox26.Value
    C1 = TextBox50.Value
    D = TextBox121.Value
    
    TextBox74.Value = (A - B1) + ((0.5 * D) - C1)
    End If
    End Sub
    Private Sub TextBox14_Change()
    Dim A As Integer
    Dim B As Integer
    Dim C As Integer
    Dim D As Integer
    
    If TextBox2.Value <> "" And TextBox14.Value <> "" And TextBox38.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox2.Value
    B = TextBox14.Value
    C = TextBox38.Value
    D = TextBox121.Value
    
    TextBox62.Value = (A - B) + ((0.5 * D) - C)
    End If
    End Sub
    
    Private Sub TextBox38_Change()
    Dim A As Integer
    Dim B As Integer
    Dim C As Integer
    Dim D As Integer
    
    If TextBox2.Value <> "" And TextBox14.Value <> "" And TextBox38.Value <> "" And TextBox121.Value <> "" Then
    A = TextBox2.Value
    B = TextBox14.Value
    C = TextBox38.Value
    D = TextBox121.Value
    
    TextBox62.Value = (A - B) + ((0.5 * D) - C)
    End If
    End Sub
    Attached Images Attached Images

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] is this correct code for each c?
    By ammartino44 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-19-2015, 01:48 PM
  2. [SOLVED] vba code to be correct and check ,vba code to brig data for the same refreince
    By funtastic in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-25-2012, 02:29 PM
  3. is dis code correct
    By kshitij_dch in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-30-2012, 12:34 PM
  4. Fix Needed for Code to Send Correct Data to Correct Sheets
    By swordswinger710 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-04-2012, 03:53 PM
  5. Can someone help correct my code
    By jram in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-07-2009, 09:33 AM
  6. Please correct for me this code
    By Freeman_100 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-11-2006, 03:03 PM
  7. Please Help Correct my code
    By saziz in forum Excel Programming / VBA / Macros
    Replies: 16
    Last Post: 12-15-2005, 10:30 PM

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