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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Rajiv1237
Resolver I
Resolver I

Running total through direct query mode in PowerBI

I can't find a way to calculate a running total, without using FILTER. Filter is not supported in PowerBi direct query-mode.

All help is appreciated

 

Not supported in Direct Query Mode 😞

 

Running Total in DAX = CALCULATE( SUM('Table'[QTY]),
    FILTER(
        ALLSelected('Table'),
        'Table'[Date] <= MAX('Table'[Date])
    )

2 ACCEPTED SOLUTIONS

Hi @Rajiv1237,

 

Did you turn on the "allow unrestricted measures in directquery mode" option? If not you can turn on it first.

In addition, my formual is a measure, don't put it in calculate column.

 

Regards.

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

RunningTotalinPowerBI = SUMX(FILTER(ALLSELECTED(YearQty), YearQty[DateKey]<=MAX(YearQty[DateKey])), YearQty[Qty])

 

Filter works in Direct Query Mode: We have to check the option in Power BI desktop ‘Allow unrestricted measures in DirectQuery mode’

 

File -> Option and settings -> Option

 

Settings.PNG

View solution in original post

6 REPLIES 6
v-shex-msft
Community Support
Community Support

Hi @Rajiv1237,

 

You can use power query to calculate the running total at query editor side.

 

For detailed information you can take a look at below blog:

Create Running Totals in Power Query

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

We can't apply this in Power BI.

 

We should find some simple solution to get running total in Power BI direct query mode.

Hi @Rajiv1237,

 

I test with below measure at direct query mode, it works smooth, perhaps you can try it.

 

Running Total = SUMX(FILTER(ALL(Table),Table[Date]<=MAX(Table[Date])),[QTY])

 

Regarsd,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Its DirectQuery Mode not Loading the data into PowerBI.

 

Filter function doesn't work in PowerBI Direct Query Mode

 

Filter function doesn't work in Direct Query ModeFilter function doesn't work in Direct Query Mode

Hi @Rajiv1237,

 

Did you turn on the "allow unrestricted measures in directquery mode" option? If not you can turn on it first.

In addition, my formual is a measure, don't put it in calculate column.

 

Regards.

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

RunningTotalinPowerBI = SUMX(FILTER(ALLSELECTED(YearQty), YearQty[DateKey]<=MAX(YearQty[DateKey])), YearQty[Qty])

 

Filter works in Direct Query Mode: We have to check the option in Power BI desktop ‘Allow unrestricted measures in DirectQuery mode’

 

File -> Option and settings -> Option

 

Settings.PNG

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors