Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register 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 April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
67 | |
42 | |
42 |
User | Count |
---|---|
46 | |
40 | |
28 | |
26 | |
25 |