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
Anonymous
Not applicable

SELECTEDVALUE date not working as filter in SUMMARIZE Table

Hey folks,

How do I create a summarized table that filters the totals based on a selected value date range?

 

I have 2 tables:

Table 1 - Dates, by day for the next 365 days

Table 2 - SalesData by material, date, and qty

 

I'm trying to create a 3rd summarized table that combines inputs from Table 1 and 2 but have been unsuccessful.

 

This formula works (when I hardcode the date):

SUMMARIZE(SalesData,SalesData.Material,

  "Qty",

  CALCULATE(

    SUM(SalesData.Qty),

    FILTER(SalesData,SalesData.Date>= DATE(2018,12,1))))

 

This formula doesn't work, but I'm trying to get to work:

VAR x = SELECTEDVALUE(Dates.Day)

RETURN

SUMMARIZE(SalesData,SalesData.Material,

  "Qty",

  CALCULATE(

    SUM(SalesData.Qty),

    FILTER(SalesData,SalesData.Date>= x)))

 

I don't have a relationship setup between Tables 1 and 2 as I use the date table for multiple other tables and want to have the flexibility of not filtering on the different relationships.

 

Thanks for your help

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous

 

You can not create dynamic calculated tables based on slicer selection

 

Calculated columns and calculated tables are evaluated once when the data is first loaded and are static until the data is refreshed or updated

 

https://docs.microsoft.com/en-us/power-bi/desktop-calculated-tables


Regards
Zubair

Please try my custom visuals
Anonymous
Not applicable

Thanks for the feedback.

 

Do you have any recommendations for how to solve this very basic problem of trying to summarize data based on a user's selected date without having to create a relationship between the sales data and date table?

 

The reason I don't want to create a relationship is because I have other tables that I want to reference with the date table but not pre-filter the results based on the relationship.

 

This has been a very frustrating experience on my end on how confusing it's been to try and solve very basic tasks in Power BI.

@Anonymous

 

Hi,

 

Did you try using MEASURES.

 

Just drag Qty and this MEASURE to a Table Visual

 

Measure =
VAR x =
    SELECTEDVALUE ( Dates[Day] )
RETURN
    CALCULATE ( SUM ( SalesData[Qty] ), SalesData[Date] >= x )

Regards
Zubair

Please try my custom visuals

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.