The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
Any thoughts on how to convert the statement below into a distinct count? Here's the trick; it needs to be accomplished without using CALCULATE (due to a circular reference limitation).
The 2 tables do not have a key as they are not at the same grain (daily vs line level) and trying to avoid creating an intermediate table.
Customer Transaction Count = COUNTX(FILTER(SalesLineData , DailySalesSummary[Date]=SalesLineData[Date], SalesLineData[TransactionNumber])
Thanks in advance for ideas.
Solved! Go to Solution.
@cdnjj, do you want to create a calculated column?
If yes, here is what you can try:
Customer Transaction Count = COUNTROWS ( GROUPBY ( FILTER ( SalesLineData, DailySalesSummary[Date] = SalesLineData[Date] ), SalesLineData[TransactionNumber] ) )
Magic! Corerct, I am building out a calculated column.
Thank you.
Hey,
It would be really helpful if you would provide sample data.
But my first idea would be
COUNTROWS( VALUES(SalesLineData[TransactionNumber]) )
Hope this helps
Regards
Tom