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 September 15. Request your voucher.
HI,
have a date table and fact table ,fact table granularity is Transaction date have joined date table with transaction date with one to Many relationship
need to Count number process in Fact table and have a date slicer in report for suppose if i select may 1st till May 31st number of process should get 25 but i got 19 because other 6 process dont have any transactions yet but need to show those as well in report
tried using Calculate(count(process),ALL(Date) but this is completing eliminating date context but want to have date context but need to show all the process even though there is no transactions in fact table any help would be highly appreciated
Solved! Go to Solution.
Hi @Varun511
For the "other 6 process dont have any transactions", does it mean that these 6 processes don't have transaction dates? If so, you can try this measure
Process Count = COUNT ( 'Table'[process] ) + CALCULATE ( COUNTBLANK ( 'Table'[Transaction date] ), ALL ( 'Table' ) )
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Varun511
For the "other 6 process dont have any transactions", does it mean that these 6 processes don't have transaction dates? If so, you can try this measure
Process Count = COUNT ( 'Table'[process] ) + CALCULATE ( COUNTBLANK ( 'Table'[Transaction date] ), ALL ( 'Table' ) )
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.