Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 Shrikant
		
			Shrikant
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello,
I have a table of GRN, Vendor and Purchaser.
GRN and vendor linked on Vendor code
Vendor and Purchaser are linked on Purchaser code.
Vendor is linked a Purchaser in Vendor table(few vendors DO NOT have purchaser assigned)
Please note these are separate tables and not inner/left joined but linked on Keys(association)
I am trying to get purchaser-wise (purchaser as dimension) on time delivery % and is working fine with all purchaser and NULL value.
But I want 2 tables...
I was able to do this in QlikView with =If(Len(Trim([Purchaser])) = 0, 'NA', Null()), but same is not working in QlikSense...
I searched a lot everyone gives the same able solution but its not working for me... am I missing anything?
I also tried isnull, ='' 😞
Thanks
Shrikant
 Kashyap_R
		
			Kashyap_R
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
Try this
=If(Len(Trim([Purchaser])) = 0 or isnull(Purchaser), 'NA', 'Existing')
if this gives you correct answer then you can limit by Existing and NA by using if conditions
Hope this works for you
Regards
kashyap.R
 Shrikant
		
			Shrikant
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks for suggestion.
reply is edited
It works when I use left join on all tables and create only one table instead of 3 (with association) else the same issue persists for all solution 😞
I also tried istext but same issue
Thanks
Shrikant
 Kashyap_R
		
			Kashyap_R
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
Can u attach sample qvf so that anyone can try
 Shrikant
		
			Shrikant
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello Kashyap,
QVF attached. In below image I want the data only for missing Purchasers
For your info it works perfect when i apply left join.
Thanks
Shrikant
 Kashyap_R
		
			Kashyap_R
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
PFA Output is in the first sheet in the app hope this helps
Regards
Kashyap.R
 Shrikant
		
			Shrikant
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello Kashyap,
I don't see any change 😞
Thanks
Shrikant
 
					
				
		
 vinieme12
		
			vinieme12
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You really need to replace null values in your data
or try below Dimension
=aggr(If(Len(Trim([Purchaser])) <1, 'NA',Purchaser)<Purchaser)
MEasure
= sum({<Purchaser={"=len(Purchaser)<1"}}> YourMEasureField)
