Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi All
i have an issues i need to extract the Cheque number from the bank Statement Excel
The String like this
| CHQ DEPOSIT002423xxx BANK LTDCHQ No 002423 | 
In this Above String i need to extract the Red Number alone other string and number i don't want
Kindly help me to achieve this...
Thanks
Siraj
 MayilVahanan
		
			MayilVahanan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
Try like this
=Keepchar(TextBetween('CHQ DEPOSIT002423xxx BANK LTDCHQ No 002423','','BANK'),0123456789)
 PrashantSangle
		
			PrashantSangle
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		hI,
use
KeepChar(fieldname,'0123456789')
Regards
 
					
				
		
hi result Come like this
002423002423
i want only of 002423 this kindly help me.
 
					
				
		
 arulsettu
		
			arulsettu
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		try this
=KeepChar(Left('CHQ DEPOSIT002423xxx BANK LTDCHQ No 002423',20),'0123456789')
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		=KeepChar(TextBetween('CHQ DEPOSIT002423xxx BANK LTDCHQ No 002423',' ',' '),'0123456789')
 PrashantSangle
		
			PrashantSangle
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If Nos is always come after last space then
you can try
subfield(FieldName,' ',-1)
Regards
 MayilVahanan
		
			MayilVahanan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
Try like this
=Keepchar(TextBetween('CHQ DEPOSIT002423xxx BANK LTDCHQ No 002423','','BANK'),0123456789)
 
					
				
		
Hi thanks for all
All the answers working fine
Thanks to all..
Siraj
