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.
Max Date With Count Greater Than 10 =
VAR _s = SUMMARIZE
(
'Fact Table'
,'Fact Table'[Date]
,"Count", COUNT('Fact Table'[Date])
)
RETURN
CALCULATE( MAXX(_s, [Date]), _s[Count] > 10 )
Solved! Go to Solution.
Hi,
Please check the below picture.
One thing that I want to share is, try to use addcolumns & summarize functions together, instead of using only summarize when adding expressions to the virtual summarized table.
The reason is that, not very often happen in general cases, but in some cases (in fact, quite a lot...), if authors use only summarize function and add expressions into the virtual summarized table, there might be an issue in creating correct numbers and having a good performance.
Hi, @AltGr9
Have you followed the DAX formula posted by Jihwan_Kim to find the solution to your problem?
If so, would you like to mark his reply as a solution so that others can learn from it too?
Thanks in advance!
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Please check the below picture.
One thing that I want to share is, try to use addcolumns & summarize functions together, instead of using only summarize when adding expressions to the virtual summarized table.
The reason is that, not very often happen in general cases, but in some cases (in fact, quite a lot...), if authors use only summarize function and add expressions into the virtual summarized table, there might be an issue in creating correct numbers and having a good performance.
Hi,
I am not sure how the measure operates without seeing the actual sample file. However, what I can suggest based on what I see is that, inside VAR in your measure, you can try to filter _s table first, and then write RETURN MAXX(.....
If you can share your sample pbix file's link, it will be helpful.
Thank you.
Hi Thanks for your help.
Is this the link you asked for? It says "People in your organization" so I don't know if you'll have access.
Hi,
Sorry that if I was not clear.
I was asking for the sample power bi desktop file's link, not your power bi service link.
Thank you.
One final thing: I would like it to be dynamic, so not using a calculated table.
Hey thanks, I've sent you the link privately.