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! Request now
Hi everyone,
Im making a measure that let you count the number of repetitions but if they have the same date then count it has 1 for that day
Solved! Go to Solution.
Hi @majo23 , please try this.
Count =
VAR CurrentLastUpdatedBy = MAX(Sheet1[LastUpdatedBy])
VAR StagingTable = SUMMARIZE(FILTER(ALLSELECTED(Sheet1),
Sheet1[LastUpdatedBy] = CurrentLastUpdatedBy),
Sheet1[LastUpdatedBy],
Sheet1[CutDate],
"Dummy_Count", 1
)
Var Result = COUNTX(StagingTable,[Dummy_Count])
Return
Result
Thanks for the reply, I made an update with the example file
Hi @Arul I add a picture, also you should be able to download the report if you want
Hi @majo23 , please try this.
Count =
VAR CurrentLastUpdatedBy = MAX(Sheet1[LastUpdatedBy])
VAR StagingTable = SUMMARIZE(FILTER(ALLSELECTED(Sheet1),
Sheet1[LastUpdatedBy] = CurrentLastUpdatedBy),
Sheet1[LastUpdatedBy],
Sheet1[CutDate],
"Dummy_Count", 1
)
Var Result = COUNTX(StagingTable,[Dummy_Count])
Return
Result
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.