Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a column like this. I want to count to know how many value in this column without duplication.
Please let me know how can I do it.
Thank you very much.
Hi Dinh,
You can use distinct, so you calculation should looks like:
Count(Distinct Your_Column)
Thanks,
Vitalii
It works.
Thank you so much.