Forum Discussion

Massingc1983's avatar
Massingc1983
Frequent Visitor
2 years ago
Solved

Error when trying to export large data from Power bi

Hi    I am trying to export a large amount of data from a power bi table (above the max row limit).    I am using DAX studio and have copied the DAX query from the performance analyser however wh...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi Massingc1983 

     

    Thanks for the reply from DataInsights .

     

    You can try changing the formula to the following:

    VAR __DS0FilterTable2 = 
            FILTER(
                KEEPFILTERS(VALUES('Append All'[Payment Date])),
                AND(
                    MAX('Append All'[Payment Date]) >= DATE(2023, 5, 1),
                    MAX('Append All'[Payment Date]) < DATE(2024, 6, 20)
                )
            )

     

    Best Regards,
    Yulia Xu

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.