Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Need help with Dax Measure

Hi, 
I have facing performance issue with a measure in my power bi report where I have creating the below measure

Transaction Count  =
COUNTROWS (
FILTER (
SUMMARIZE (
'Compiled Sales',
'Compiled Sales'[Store Code],
'Compiled Sales'[BillNo],
"Total", SUM ( 'Compiled Sales'[Sold Quantity] )
),
[Total] > 0
)
)

can this measure be created in another way currently this dax is taking 20 sec and my main fact table has 20 million records.
please let me know if any other information is requried.

 




1 REPLY 1
tamerj1
Super User
Super User

Hi @Anonymous 
Usually it should not be slow but in some occasions when creating a column inside SUMMARIZE. The thing is this is a simple sum calculation which leaves in doubts. However, you may try the following to avoid creating the column inside SUMMARIZE.

Transaction Count =
SUMX (
    SUMMARIZE (
        'Compiled Sales',
        'Compiled Sales'[Store Code],
        'Compiled Sales'[BillNo]
    ),
    INT ( CALCULATE ( SUM ( 'Compiled Sales'[Sold Quantity] ) ) > 0 )
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.