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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
wangjuan303
Helper III
Helper III

When load more data, measure not work

Hi , I have dashboard, is Direct Query connection, in the test DB, have 45 million rows,  I create a measure for find top 10 , when I just filter report, it load less data, this measure will works fine, when I clean this filter, load all related top 10, this report will show data with error, and some filter not work, I am not sure this related DAX , or related Power bi Direct query data limited, if anyone have good suggestion, please let me know, Thank you.  first picture data all right, and just have "AA" related top 10, second picture, when I remove "AA" filter, try to show all related data, then rank and filter for 11 all not work, and at same time, data not show the digest one, some data miss in this report .   

wangjuan303_1-1632027637098.png

wangjuan303_2-1632027753909.png

 

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

I tested it in a small data set, and the formula work fine.The issue in your dataset may be caused by query performance of too large dataset.

Vlianlmsft_0-1632384310898.pngVlianlmsft_1-1632384323868.png

 

https://www.bluegranite.com/blog/how-to-improve-power-bi-performance-part-one 

View solution in original post

4 REPLIES 4
V-lianl-msft
Community Support
Community Support

I tested it in a small data set, and the formula work fine.The issue in your dataset may be caused by query performance of too large dataset.

Vlianlmsft_0-1632384310898.pngVlianlmsft_1-1632384323868.png

 

https://www.bluegranite.com/blog/how-to-improve-power-bi-performance-part-one 

Thank you, you are right, our report has a default setting for Direct query connection, after change this setting, now all works, 

PaulDBrown
Community Champion
Community Champion

What is the RANK measure? How is the model set up?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






rank is similar like this patten,  data model is no relationship, only one big table

Rank Product =
IF (
    ISINSCOPE( 'Product'[Product Name] ),
    RANKX (
        CALCULATETABLE (
            VALUES ( 'Product'[Product Name] ),
            ALLSELECTED ( 'Product'[Product Name] )
        ),
        [Sales Amount]
    )
)

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.