The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have created a measure that sums the number of days (counting calendar dates, not full 24 hour days) by using the following:
Days Duration = SUMX (
Sheet1,
DATEDIFF ( Sheet1[Login], Sheet1[Logout], Day )
) +1
Based on this data below, I would like to see the sum total of these days. So instead of gettting a "5" I would expect to see a "9".
Thank you
Solved! Go to Solution.
Why don't you just add colnum?
your +1 is not correct.
Days Duration = SUMX (
Sheet1,
DATEDIFF ( Sheet1[Login], Sheet1[Logout], Day )+1
)
Why don't you just add colnum?
your +1 is not correct.
Days Duration = SUMX (
Sheet1,
DATEDIFF ( Sheet1[Login], Sheet1[Logout], Day )+1
)
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |