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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
fn_Saurav
Frequent Visitor

Computed tables not updating after incremental refresh

I am new to power bi and I was going through MS Docs to implement Incremental refresh I have done it exactly as direct in the docs but I suspect that there is some kind of blunder or there is something very obvious that I am missing...

 

I have a source table Table1 which I am querying from Az table storage.

I have implemented incremental refresh on this table.

 

 

 

Source = AzureStorage.Tables("storageAcc"),
    TelemetryContinuoueExport1 = Source{[Name="TelemetryContinuoueExport"]}[Data],
    #"Filtered Rows" = Table.SelectRows(TelemetryContinuoueExport1, each [Timestamp] >= RangeStart and [Timestamp] < RangeEnd)

 

 

 

I have other tables which i am creating using power queries. Table 1 is the source of these queries, but only Table1 gets refreshed during refreshes and the other tables remain static.
Example for Computed table creation:

 

 

let
    Source = Table.SelectRows(Table1, each [Timestamp] >= RangeStart and [Timestamp] < RangeEnd and [EventName] = "BotMessageReceived" or [EventName] = "BotMessageSend" ),
    #"Grouped Rows" = Table.Group(Source, {"UserSessionId" }, {{"starttime", each List.Min([Time]), type datetime}, {"endtime", each List.Max([Time]), type datetime}, {"EventCount", each Text.Combine( List.Distinct([EventName]), "---"), type text}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Duration.TotalSeconds([endtime]-[starttime])),
    #"Renamed Columns" = Table.RenameColumns(#"Added Custom",{{"Custom", "SessionDuration"}}),
    #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"SessionDuration", type number}, {"starttime", type datetime}, {"endtime", type datetime}}),
    #"Renamed Columns1" = Table.RenameColumns(#"Changed Type",{{"starttime", "StartTime"}, {"endtime", "EndTime"}})
    //#"Final" = Table.SelectRows(#"Renamed Columns1", each Text.Contains([EventCount], "BotMessageReceived"))
in
    #"Renamed Columns1"

 

 

Any help would be appreciated

Thanks!

 

2 REPLIES 2
RobertSlattery
Responsive Resident
Responsive Resident

What happens if you split the filter like this...

Source = Table.SelectRows(Table1, each [Timestamp] >= RangeStart and [Timestamp] < RangeEnd ),
selected = Table.SelectRows(Source, each [EventName] = "BotMessageReceived" or [EventName] = "BotMessageSend" )

Hi Robert,
I tried your suggestion on the computed tables. The result is the same, the computed tables remain static where the data in them remains the same as when published. They are not refreshing.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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