Hi,
i am using a simple public function to calculate the cost which is dependent on the inventory week. How do I design so that when the user enters a week number in a form. It uses only that column to calculate the cost.
Public Function PPC(week1 As Variant, CASE_CUBE As Variant)
PPC = CASE_CUBE * week1
End Function
i want to make the "week1" above a variable which is dependent on a value from the user in a form. Any ideas please?
i am using a simple public function to calculate the cost which is dependent on the inventory week. How do I design so that when the user enters a week number in a form. It uses only that column to calculate the cost.
Public Function PPC(week1 As Variant, CASE_CUBE As Variant)
PPC = CASE_CUBE * week1
End Function
i want to make the "week1" above a variable which is dependent on a value from the user in a form. Any ideas please?