Here is a sample of my CSV table:
Roadway_Width,Girder_Size,Skew,Min_Length,Max_Length,Standard
24,Concrete I-Beam (TX28),0,40,75,SIG-24
24,Concrete I-Beam (TX28),15,40,75,SIG-24-15
24,Concrete I-Beam (TX28),30,40,75,SIG-24-30
24,Concrete I-Beam (TX28),45,40,75,SIG-24-45
24,Concrete I-Beam (TX34),0,40,85,SIG-24
24,Concrete I-Beam (TX34),15,40,85,SIG-24-15
24,Concrete I-Beam (TX34),30,40,85,SIG-24-30
24,Concrete I-Beam (TX34),45,40,85,SIG-24-45
28,Concrete I-Beam (TX28),0,40,70,SIG-28
28,Concrete I-Beam (TX28),15,40,70,SIG-28-15
28,Concrete I-Beam (TX28),30,40,70,SIG-28-30
28,Concrete I-Beam (TX28),45,40,70,SIG-28-45
28,Concrete I-Beam (TX34),0,40,85,SIG-28
28,Concrete I-Beam (TX34),15,40,85,SIG-28-15
28,Concrete I-Beam (TX34),30,40,85,SIG-28-30
28,Concrete I-Beam (TX34),45,40,85,SIG-28-45
I would like to get user input data for Roadway_Width, Skew, and Length. Roadway_Width and Skew will be equal to the values in the table, but Length >= Min_Length and Length <= Max_Length. Return all of the values under Girder_Size and Standard that meet these criteria into 2 separate columns as below.
Girder_Size Standard -------------- ------------- Concrete I-Beam (TX34) SIG-28-45
Thank you very much in advance as I have been racking my brain over this and I am getting a headache.