The code currently asks the user for two separate numbers, and it divides them and the answer pops up in a message box. What I want to do next is use that answer and figure what percentile it is within column "T" in my workbook.
If response = vbNo Then
Dim cost, weight, answer As Variant
cost = InputBox("Please Enter PO Cost")
weight = InputBox("Please Enter Net Weight")
answer = cost / weight
MsgBox "Price per KG is: " & answer
Exit Sub