Hey guys
I'm new to alteryx, and im trying to achieve something similar to the BETWEEN in sql.
I have 2 data sources.
One with Product and Weight -
And i wanna get the price for that product from a 2. file, that contains a min. weight and a max weight.
Its something like this:
| A.Shipment_type | Weight | |
| | | | |
| Parcel | | 1 | |
| Parcel | | 2 | |
| Parcel | | 7 | |
| | | | |
| | | | |
| | | | |
| Select [Price] from b.price_table where A.shipment_type.Weight BETWEEN B.Min_Weight AND B.Max_Weight |
| | | | |
| | | | |
| | | | |
| | | | |
| B.Price_table | | | |
| Type | Min Weight | Max Weight | Price |
| Parcel | 1 | 5 | 50 |
| Parcel | 6 | 10 | 100 |
Any ideas how to achieve this?