Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi Everbody
I have a question about GetSelectedField and GetSelectedCount funtions , I m using an expression like this ;
if(GetSelectedCount(Ay)>0,'Report'&GetFieldSelections(Ay)&' Months')&
if(GetSelectedCount(Gün)>0,', '&GetFieldSelections(Gün)&' of days')
But as in the attach , ı cant sort days , and ı want to see all of day. Exc(1,2,3,4,5,6,7,8,9,10,11..)
Can anyone help me ?
Thanks
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this:
if(GetSelectedCount(Ay)>0,'Report'&GetFieldSelections(Ay, ',', 100)&' Months')&
if(GetSelectedCount(Gün)>0,', '&GetFieldSelections(Gün, ',', 100)&' of days')
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this:
if(GetSelectedCount(Ay)>0,'Report'&GetFieldSelections(Ay, ',', 100)&' Months')&
if(GetSelectedCount(Gün)>0,', '&GetFieldSelections(Gün, ',', 100)&' of days')
 
					
				
		
Maybe try the concat() function and exploit its sort_weight argument.
See concat() help entry :
 
					
				
		
Hi Muhammed,
Try
getfieldselections ( YourField, YourDelimiter , MaxValues )
And put in MaxValues a higher number, so that all value you select can be showed.
Regards,
Sílvia
 
					
				
		
Hi Sunny
Thanks for reply , its worked but whats can ı do about sorting days ?
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I guess in that case go with bill.markham's suggestion of using Concat() instead of GetFieldSelections
 
					
				
		
Thanks for reply;
What can ı do about sorting days , when I selected days in order of 4,5,6,7,8 , output view is 6,7,4,5,8.
 
					
				
		
Apply the sorting calculation in sort tab using match function
