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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Pedro503
Resolver I
Resolver I

How to use ALL() with a field parameter and return a table of the current selected value?

Hey there,

 

File link here

 

I'm trying to dynamically return a table based on a slicer selection, as shown in the following image:

Pedro503_1-1689915648916.png

 

What does that means? If, in the field paramenter based slicer, it's selected the DateShortened, then the table will generate a list with all the dates of the calendar dimension table; so for the weeks and the months.

 

The problem lies in the usage of the ALL() function, because when I try to use the column from the calendar table inside this ALL() filter on the CALCULATE formula, the following message error pops up:

The ALL function expects a table reference expression for argument '1', but a string or numeric expression was used.

 

Is there any way to make this dynamic? The only workaround I manage to found was using the ISINSCOPE() function, but in my real life dataset I use too many columns that it turns out to be very slow in a performance point of view (because of the CallBackDataID in the SWITCH() formula).

Thanks in advance.

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @Pedro503 ,

 

Please try:

SalesAmountAll =
SWITCH (
    MAX ( 'P_Date'[P_Date] ),
    "Week", CALCULATE ( [SalesAmount], ALL ( d_calendar[Week] ) ),
    "MonthYear", CALCULATE ( [SalesAmount], ALL ( d_calendar[MonthYear] ) ),
    "DateShortened", CALCULATE ( [SalesAmount], ALL ( d_calendar[DateShortened] ) )
)

Final output:

vjianbolimsft_0-1690164756776.png

Best Regards,

Jianbo Li

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

View solution in original post

2 REPLIES 2
v-jianboli-msft
Community Support
Community Support

Hi @Pedro503 ,

 

Please try:

SalesAmountAll =
SWITCH (
    MAX ( 'P_Date'[P_Date] ),
    "Week", CALCULATE ( [SalesAmount], ALL ( d_calendar[Week] ) ),
    "MonthYear", CALCULATE ( [SalesAmount], ALL ( d_calendar[MonthYear] ) ),
    "DateShortened", CALCULATE ( [SalesAmount], ALL ( d_calendar[DateShortened] ) )
)

Final output:

vjianbolimsft_0-1690164756776.png

Best Regards,

Jianbo Li

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

Pedro503
Resolver I
Resolver I

Hey, @amitchandak , do you know whether it's possible to do that?

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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