Hi,
I’m trying to do a repeater where if 3 row have been chosen you display one set of code however if its more you show different set of code.
				
		
	 
	
	
		
	
		
	
		
		
	
	
		
		
			
		
	
	
		
		
		Hi  @forbiddenchunk 
You will need to check the repeater row count as follows. 
$count = count(get_field('repeater_name'));
You can then show the each code set depending on the row count.
Hope this helps.