Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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)
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
108 | |
101 | |
93 | |
69 |
User | Count |
---|---|
173 | |
135 | |
132 | |
101 | |
95 |