Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 jagjivvt
		
			jagjivvt
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
I have a field called Invoice ID, in this the field the Invoice ID could appear more than once. if it does, I need to mark annotate with an abbreviation, either numerical or alpha.
thanks
Vijay
 Kushal_Chawda
		
			Kushal_Chawda
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		@jagjivvt may be like below
Data:
LOAD *
FROM Table;
left join(Data)
LOAD [Invoice ID],
     if(Cnt_Invoice>1,'Duplicate','Non-Duplicate') as Flag;
LOAD [Invoice ID],
     count([Invoice ID]) as Cnt_Invoice
resident Data
group by [Invoice ID];
 mattphillip
		
			mattphillip
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 Kushal_Chawda
		
			Kushal_Chawda
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		@jagjivvt may be like below
Data:
LOAD *
FROM Table;
left join(Data)
LOAD [Invoice ID],
     if(Cnt_Invoice>1,'Duplicate','Non-Duplicate') as Flag;
LOAD [Invoice ID],
     count([Invoice ID]) as Cnt_Invoice
resident Data
group by [Invoice ID];
 
					
				
		
 jagjivvt
		
			jagjivvt
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thank you
