March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello Community. I have an application getting data written to sharepoint. I want to count the number of users signed up today(). I have something like this. Though with errors.
Number of Users Added Today=
VAR COuntTOdayUsers =
CALCULATE(COUNT('Users Information'[Title]
'Users Information'[Created] =TODAY()
)
RETURN
COuntTOdayUsers
Please assist
Solved! Go to Solution.
@Datagulf Try:
Number of Users Added Today=
VAR __Table = FILTER('Users Information',[Created] = TODAY())
RETURN
COUNTROWS(__Table)
@Datagulf Try:
Number of Users Added Today=
VAR __Table = FILTER('Users Information',[Created] = TODAY())
RETURN
COUNTROWS(__Table)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |