+ Reply to Thread
Results 1 to 3 of 3

Unit Conversion

Hybrid View

  1. #1
    Registered User
    Join Date
    05-31-2010
    Location
    Aberdeen, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    1

    Unit Conversion

    hi all,

    Im trying to create a form which has input for more than one unit type but which converts any inputs back to a single unit. I currently have a textbox and a combobox. the combobox has the unit types in it and i want the code to recognise which unit is selected and convert the value in the textbox accordingly before changing the combobox to show the units it converted to.
    ie. pressure: bar, psi, pascal. If the user enters 20 in the textbox and psi in the combobox, the textbox would change to 1.38 and combobox to bar.

    Is this possible

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Unit Conversion

    You can create a conversion table someplace that lists units across the top, units down the left, and conversion factors in the body:

          ----A---- ----B---- ----C---- ----D----
      1   To \ From    bar       psi     pascal  
      2      bar    1.000E+00 6.897E-02 1.000E-05
      3      psi    1.450E+01 1.000E+00 1.450E-04
      4    pascal   1.000E+05 6.897E+03 1.000E+00
    Then the conversion factor convert from one unit to the other is, for example,

    =INDEX($A$1:$D$4, MATCH("pascal", $A$1:$A$4, 0), MATCH("bar", $A$1:$D$1, 0) )
    Last edited by shg; 05-31-2010 at 02:13 PM.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229

    Re: Unit Conversion

    Try putting this in the userform's code module
    Private Sub UserForm_Initialize()
        With Me.ComboBox1
            .ColumnCount = 2
            .ColumnWidths = ";0"
            .AddItem "bar"
            .AddItem "psi"
            .AddItem "pascal"
            Rem conversion units from .listindex to bar
            .List(0, 1) = 1
            .List(1, 1) = 14.5
            .List(2, 1) = 100000#
            .ListIndex = 0
        End With
        TextBox1.Text = vbNullString
    End Sub
    
    Private Sub ComboBox1_Click()
        With ComboBox1
            TextBox1.Text = CStr(Val(TextBox1.Tag) * Val(.List(.ListIndex, 1)))
        End With
    End Sub
    
    Private Sub TextBox1_AfterUpdate()
        Dim Amount As Double
        Dim AmountInBars As Double
        Amount = Val(TextBox1.Text)
        With ComboBox1
            AmountInBars = Amount * .List(.ListIndex, 1)
        End With
        TextBox1.Tag = AmountInBars
    End Sub
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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