Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 bhaskarsharma03
		
			bhaskarsharma03
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I need to loop through records in a table to find a matching record, and
then compare them with some criteria.
Attached are 2 files - if you check the excel file, I need to pick one Parent
ID, and then loop through the column ID, if a
matching record is found then I need to compare these two rows with the
criteria given towards the right side of the excel file.
The New ID field in the file is the required outcome.
Any help will be greatly appreciated. Please let me know if more clarification
is required.
Regards,
Bhaskar
 
					
				
		
 swuehl
		
			swuehl
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try maybe something along these lines:
ParentMap:
MAPPING LOAD
MonthStart(Date) & ' - ' & [ID],
[ID]
FROM
[New ID-1.xlsx]
(ooxml, embedded labels, table is Sheet1)
WHERE Stage = 'Sold';
LOAD ID,
Date,
Stage,
Amount,
[Parent ID],
[New ID] as ReqID,
if(Stage = 'Sold' and Amount <0, applymap('ParentMap',Monthstart(Date) &' - ' & [Parent ID], ID), ID) as [New ID]
FROM
[New ID-1.xlsx]
(ooxml, embedded labels, table is Sheet1);
edit: You will need to adapt the filename of the excel
