Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 ali_hijazi
		
			ali_hijazi
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello
I got a table on which I have a loop over each record
during the loop i'm applying a certain condition on a field if the row matches the condition I want to add the row to a Table
can I use the concatenate(TableName)?
how can I create an empty table to append data to
 
					
				
		
 lironbaram
		
			lironbaram
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		hei
check this example
hope it helps you
 sivaramr
		
			sivaramr
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Lironbaram,
Can you please share the example in the body of the reply, because i am using Personnel edition and can't upload in my version to see your answer.
Thank you
 
					
				
		
 swarnendu
		
			swarnendu
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi @sivaramr this the script ..
BaseData:
LOAD * INLINE [
Champ1, Champ2, Champ3, Champ4, RowNumber
A, 1, I, UN, 0
B, 1, J, UN, 1
C, 2, K, DEUX, 2
D, 1, L, DEUX, 3
E, 2, M, DUEX, 4
];
let counter = NoOfRows('BaseData');
for i=0 to $(counter)-1
Data:
load Champ1 AS c1,
Champ2 AS C2,
Champ3 AS C3,
Champ4 As C4
resident BaseData
where RowNumber =$(i) and Champ2=1;
next
---------------------------------------------------------------
And this is the UI:
 sivaramr
		
			sivaramr
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks Swarnendu
 
					
				
		
 swarnendu
		
			swarnendu
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		@sivaramr Its my pleasure
