Forum Discussion
jadeweller
May 19, 2022Copper Contributor
Count User Logins
Hi there, I have been given a spreadsheet which contains a table of data. One of the columns is for dates, the other contains student IDs. I have been asked to count the number of student's that have...
- May 19, 2022
Do you have Microsoft 365 or Office 2021? If so, it's very easy:
=COUNTA(UNIQUE(FILTER(ID_range,(date_range>=start_date)*(date_range<=end_date))))
HansVogelaar
May 19, 2022MVP
Do you have Microsoft 365 or Office 2021? If so, it's very easy:
=COUNTA(UNIQUE(FILTER(ID_range,(date_range>=start_date)*(date_range<=end_date))))- jadewellerMay 19, 2022Copper Contributor
HansVogelaar That worked, thank you!