Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everybody , I need to write an if statement with multiple conditions for example :
if(enter_time+exit_time) >= 2, count(vhcls) .
is there an if formula to do this or should I use another function?
many thanx.
Hi there,
I would create field in the script for this:
New_field:
LOAD
enter_time+exit_time as duration
FROM...
and use this measure:
Count(if((duration) >= 2,vhcls)
Hope this helps