Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I try to create a running total on SqlServer (Direct Query), by the Timestamp column (DateTime2).
RuningTotal = CALCULATE (
SUM('Changes'[Delta]),
FILTER(
ALLSELECTED('Changes'[Timestamp]),
'Changes'[Timestamp] <= MAX('Changes'[Timestamp])
)
)Filter comparison skips all values when time field contains fractions to nanoseconds. Same with ISONORAFTER.
If I change data in DB to not contain fractions, measure works fine.
Is this somehow by design?
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.