Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
hello all,
i have a to do a graph to dsiplay the values of the field : report_role. the field has three values :Voluntary Party, Reporting Party, nonreportingparty. I have to do just 2 categories for the values : Voluntary Party (Voluntary Party + nonreportingparty) and Reporting Party.
can someone give me the main steps to di this in the designer ?
thnaks in advance
 
					
				
		
Hi,
can you post a QVW file with test data?
Regards.
 qlikmsg4u
		
			qlikmsg4u
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
Use calculated dimension as
If(Match(report_role,'Voluntary Party','nonreportingparty') , 'Voluntary Party', Reporting Party)
 Gysbert_Wassena
		
			Gysbert_WassenaCreate two set analysis expressions, one for each category. If your current expression is sum(TransactionAmount) then create two expressions like these:
Voluntary Party: sum({<report_role={'Voluntary Party','nonreportingparty'}>}TransactionAmount)
Reporting Party: sum({<report_role={'Reporting Party'}>}TransactionAmount)
Make sure to use the exact case sensitive field names and values of your document. Don't blindly copy my example expressions.
 
					
				
		
 MarcoWedel
		
			MarcoWedel
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If(Match(report_role,'Voluntary Party','nonreportingparty') , 'Voluntary Party', 'Reporting Party')
 
					
				
		
 MarcoWedel
		
			MarcoWedel
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If(report_role = 'nonreportingparty', 'Voluntary Party', report_role)
 
					
				
		
Hi
Please see below my comments and accordingly change the syntax and your case sensitive fields.
sum(TransactionAmount) then create two expressions like these:
Voluntary Party: sum({<report_role={'Voluntary Party','nonreportingparty'}>}TransactionAmount)
Reporting Party: sum({<report_role={'Reporting Party'}>}TransactionAmount)
Thanks
 
					
				
		
 MarcoWedel
		
			MarcoWedel
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		one example:
hope this helps
regards
Marco
