Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Morning all,
I am hoping for a little help to convert the following formual to Dax or advice as this maybe easier utilising a calculated table?
Basically it is counting distinct values based on the date
=SUM(--(FREQUENCY(IF([@[Offer_Date]]=[Offer_Date], COUNTIF([Offer_Account], "<"&[Offer_Account]), ""), (COUNTIF([Offer_Account], "<"&[Offer_Account])))>0))
Any help would be greatly appreciated
Cheers
Solved! Go to Solution.
Found this in another topic and works great once adjusted for my table and column names
Measure 2 = var _table=SUMMARIZE('Table','Table'[Shop],'Table'[Date],"distinctcount",DISTINCTCOUNT('Table'[Customer]))
return
SUMX(_table,[distinctcount])
Found this in another topic and works great once adjusted for my table and column names
Measure 2 = var _table=SUMMARIZE('Table','Table'[Shop],'Table'[Date],"distinctcount",DISTINCTCOUNT('Table'[Customer]))
return
SUMX(_table,[distinctcount])
Post a small copiable dataset together with expected results.
Regards
Perhaps this measure:
MyMeasure =
CALCULATE(
DISTINCTCOUNT( 'Table'[Offer_Account] ),
ALLEXCEPT( 'Table', 'Table'[Offer_Date] )
)Regards
Thank you but that seems to be counting Distinct Accounts only....if the account appears on different days i need it to count both instances
hope that makes sense
But unless I'm mistaken your Excel formula is not doing that - the part
IF([@[Offer_Date]]=[Offer_Date],...means that the counts will be for a given date only.
Regards
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 11 |