I have a database that is built for prevalence modeling; My main driver is, if a new client comes on that has 60,000 customers, what can we expect for sales.
I have historical data for 1,500 clients all at different sizes. I would like to bucket client size ranges. For example, if the client is between 20,000 and 30,000 bucket as 25,000. If the client is between 30,001 and 40,000 bucket as 35,000. I tried building an IIF statement but it became to big because my buckets start at 25,000 and would go to 1,000,000.
Is their a module or language that can be built to bucket these instead of if statements or reference tables?
I have historical data for 1,500 clients all at different sizes. I would like to bucket client size ranges. For example, if the client is between 20,000 and 30,000 bucket as 25,000. If the client is between 30,001 and 40,000 bucket as 35,000. I tried building an IIF statement but it became to big because my buckets start at 25,000 and would go to 1,000,000.
Is their a module or language that can be built to bucket these instead of if statements or reference tables?