Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Regarding performance, Set analysis or If statement???
Which would work quicker.
Could someone help me in scripting the below statement using Set analysis
=count(DISTINCT(If(Name='John',Awards)))
Set analysis is definitely quicker!
count({$<Name={'John'}>} DISTINCT Awards)
Set analysis is definitely quicker!
count({$<Name={'John'}>} DISTINCT Awards)
Thanq Marcus