Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |