Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody,
I meet a problem,How to count how many ID which Start equals End?
=count({<Start=End>} ID) ?
Try this:
Count(DISTINCT {<ID = {"=Start = End"}>} ID)
Count (distinct If(Start=End, ID) )
May be this:
=Count({$<ID={"=Start =End"}>}ID)
=if(Start=End, count(ID) )
Hi Sunny ,
Thanks a lot.You are right.
Hi kushal,
Thank you for your answer.Your answer is wrong ,but I do not know why!
The right answer is :Count(DISTINCT {<ID = {"=Start = End"}>} ID)
Thank you very much.