Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Im using the expression as below
= If(PlantingMaterial='Socfindo',95) and its works
but i want to add, if other = 100
how to add the expression for that
total expression is if planting material is socfindo, score = 95, is planting material other than socfindo, score is 100
= If( PlantingMaterial='Socfindo', 95, if( PlantingMaterial='Other', 100 ) )
or
pick(match(PlantingMaterial,'Socfindo','Other'),95,100)
Otherwise, you can use this syntax :
=pick(match(PlantingMaterial,'Socfindo')+1,100,95)
Here advantage is that it works even if you don't have 'other' value in your data.
Hi,
Try this
= If(PlantingMaterial='Socfindo',95,If(PlantingMaterial='other',100))
Thanks & Regards,
Madhu
= If( PlantingMaterial='Socfindo', 95, if( PlantingMaterial='Other', 100 ) )
or
pick(match(PlantingMaterial,'Socfindo','Other'),95,100)
Otherwise, you can use this syntax :
=pick(match(PlantingMaterial,'Socfindo')+1,100,95)
Here advantage is that it works even if you don't have 'other' value in your data.