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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Slowik131
Helper I
Helper I

Table not available in aggregated dataset

Hi,

 

I've created an aggregated dataset and on my side everything works properly, however when the end user goes on the app they see this message:

Slowik131_0-1695571403235.png

Table not available. Subscriber flow 2 table is aggragated table which is hidden, as per documentation

Slowik131_1-1695572642044.png

I've got RLS applied to both aggregated and detail table and all my measures query detail table. What should I do in this case?

 

Thanks a lot

1 ACCEPTED SOLUTION

There is no need to specify 

FILTER(ALL('Calendar'), 'Calendar'[Dates]<=MAX('Calendar'[Dates])

Power BI does that automatically for you.  What you will want to try is to move the MAX computation out.

 

Sales (Other) =
var m = MAX ( 'Calendar'[Dates] )
return CALCULATE (
    LASTNONBLANKVALUE ( 'Calendar'[Dates], SUM ( 'Other Actuals'[RECRU] ) ),
    'Calendar'[Dates] <=  m
)

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

 

and all my measures query detail table

 

please check again, Maybe you overlooked one occurrence - the one feeding this broken visual.

Hi, it's definitely a bug. None of the visuals have information from subscriber flow 2 table and yet the error points to it.

 

Through trial and error I found that the problem comes from this measure:

 

 

Sales (Other) =
CALCULATE (
    LASTNONBLANKVALUE ( 'Calendar'[Dates], SUM ( 'Other Actuals'[RECRU] ) ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Dates] <= MAX ( 'Calendar'[Dates] ) )
)

 

 

 

and specifically from the last part 

 

 

 

FILTER(ALL('Calendar'), 'Calendar'[Dates]<=MAX('Calendar'[Dates])

 

 

 

When I remove this part, everything works correctly. Please note that the calendar is in dual mode. As you can see, there is no link to "subscriber flow 2" table, even though the message points to it.

 

How can I modify this mesaure for it to work in the same way? I have one value per month and I want this value to populate every single day with it.

 

There is no need to specify 

FILTER(ALL('Calendar'), 'Calendar'[Dates]<=MAX('Calendar'[Dates])

Power BI does that automatically for you.  What you will want to try is to move the MAX computation out.

 

Sales (Other) =
var m = MAX ( 'Calendar'[Dates] )
return CALCULATE (
    LASTNONBLANKVALUE ( 'Calendar'[Dates], SUM ( 'Other Actuals'[RECRU] ) ),
    'Calendar'[Dates] <=  m
)

It works! Thanks a lot!! 🙂

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.