Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
@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
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 )
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
103 | |
99 | |
99 | |
38 | |
37 |
User | Count |
---|---|
151 | |
121 | |
73 | |
71 | |
63 |