RockDarkwater
New Member
- Joined
- Dec 17, 2015
- Messages
- 6
I'm new to Access (moving over from Excel because the databases were too big) and I was wondering the best way to duplicate how excel manipulates data.
I have two tables that need to interact:
Table 1 - Gas Component Percentages in a sample (Methane, Ethane, etc.). Each sample processed is a record, each component is a column.
Table 2 - Gas Component constants (Molecular weight, Cubic Ft per Gallon, etc.). Each record is a component, each constant is a column.
How do I get a text box in a report or form to display the molecular weight of a sample? (Component Percent * Component Constant)
In excel, I'd write something like this:
=Hlookup("Methane", Table1!1:2, 2, False)*vlookup("Methane", Table2!A:B, 2, False)
Thanks in advance for the help!
I have two tables that need to interact:
Table 1 - Gas Component Percentages in a sample (Methane, Ethane, etc.). Each sample processed is a record, each component is a column.
Table 2 - Gas Component constants (Molecular weight, Cubic Ft per Gallon, etc.). Each record is a component, each constant is a column.
How do I get a text box in a report or form to display the molecular weight of a sample? (Component Percent * Component Constant)
In excel, I'd write something like this:
=Hlookup("Methane", Table1!1:2, 2, False)*vlookup("Methane", Table2!A:B, 2, False)
Thanks in advance for the help!