Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi all,
i have small confusion in straight table.
how to convert null(-) value into 0 means
in my straight table my data has
a b
--- -----
- 10
10 -
- -
my straight table showing above table.
i want show my straight table below how. please share me
a b
--- ---
0 10
10 0
0 0
i want show my straight second one .
 
					
				
		
Hi subbareddy,
On property objects, on presentation tab, uncheck Suppress zero-values, and Null Symbol and Missing Simbol may be 0 too.
Kind regards.
 tamilarasu
		
			tamilarasu
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Go to Presentation Tab and write 0 instead of '-' in Null symbol box.

 
					
				
		
 maleksafa
		
			maleksafa
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		easiest way would be to go to the presentation tab and at the bottom set the null symbol to 0, other options would be to use the isnull() function in the expression and covert the values to 0. same thing can be applied in the reload script.
 bindu_apte
		
			bindu_apte
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Please find the settings where you can change the null symbol '-' to '0'

 beck_bakytbek
		
			beck_bakytbek
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi subba,
i had such Problem in the case with TableBox, i am not sure, but you can try to do tha same way in case with straight table.
my way of proceeding does look like:
first step: in Script-Area;
NullAsValue*;
Set NullValue ='';
Load
if(len(trim([yourField]))= 0, 'yourSign', [yourField]) as YourName
Resident YourName;
i hope that helps
beck
 nicolas66
		
			nicolas66
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Bonjour,
try Alt(a,0).
Bonne journée,
Philippe
 pho3nix90
		
			pho3nix90
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
 susovan
		
			susovan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this,
