Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please refer the table below:
I want an expression to count number if all the values design_accept=3.
Eg; If all the values for design_accept=3 for each MachDateKey then it should count as 1.
Please assist.
How about this
Count({<MachDateKey = {"=design_accept = 3"}>} DISTINCT MachDateKey)
Hi Mohammed,
Your expression like below:
Count({<design_accept={'3'}>}MachDateKey)
Thanks,
Arvind Patil
Hi Arvind,
I am unable to get the desired result with the above expression.
I am aware of this expression and have used it already (Count({<design_accept={'3'}>} distinct MachDateKey) ) but even though sometimes not all values are equal to 3 , it is taking count for that MachDateKey.
So I need some count function which includes avg expression inside IF condition.
O Got it.
write it on script level:
if(match (design_accept,'3') and not is null(MachDateKey) ,1,0) as Count3rd,
And in front end expression :
count (distinct Count3rd)
Thanks,
Arvind Patil
Not working..
Syntax error I guess
How about this
Count({<MachDateKey = {"=design_accept = 3"}>} DISTINCT MachDateKey)
Hi nMohammed, you can try with:
=Count(DISTINCT {<MachDateKey{"=Max(design_accept)=3 and Min(design_accept)=3"}>} MachDateKey)
Thank you all for the help...
What changes do i need to write in the above set analysis expressions if I bring in one more field called "Date" which has only two unique values ?
Assume max date and min date.
Not sure I understand, what do you mean 2 unique values for the Date field? Can you elaborate with an example?