Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
Hello all!
I am trying to create a report that gives Sales figures by Fiscal Year and Fiscal Week from a Power BI dataset that has daily level data (I am doing a lot more, but for illustrative purposes let's say this). To do so, I have created an intermediary table using the following DAX query:
week_table = ADDCOLUMNS(
summarize('Master Table', 'Date Table'[Fiscal Year], 'Date Table'[Fiscal Period], 'Date Table'[Fiscal Week], "max_date", max('Date Table'[Transaction Date])),
"sales", [Sales]
)
This table query works fine, and allows me create a nice and responsive visual. However, there is a Company column in the 'Master Table' dataset, and I would like to create some sort of slicer that allows viewers to select a Company and update week_table so that it only gives Sales numbers for that specific company. For space purposes, I cannot bring Company directly into the table (it excees 1M rows and gives me an error).
So far, I have tried the following:
week_table = ADDCOLUMNS(
summarize(FILTER('Master Table', 'Master Table'[Company] = SELECTEDVALUE(crosswalk[Opco Num])),
'Date Table'[Fiscal Year], 'Date Table'[Fiscal Period], 'Date Table'[Fiscal Week], "max_date", max('Date Table'[Transaction Date])),
"sales", [Sales]
)
I have also tried 'Master Table'[Company] IN VALUES crosswalk[Opco Num] in this statement. All have left me with a blank table with 0 rows. I feel like I am close... could someone please help me with this?
Thanks so much!
Hi,
You should create a Calendar Table with calculated column formulas for Year, Month name and Month number. Sort the Month name column by the Month number. To your visual, drag year and Month name from the Calndar Table. Write this measure
Total = sum(Data[sales])
Hope this helps.
I don't understand what you need the intermediate table for. This is a job for your data model?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |