I had the same problem. The Woocommerce variation limit needs to be increased. Try adding the following to your functions.php file
/* Increase WooCommerce Variation Limit */
function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 100;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 100, 2 );