Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello,
I have a forcasting formula we built in Power Bi and it is working great for calculating the number of units expected to be sold, both in historical and future dates. Where I am having issues is calculating the forecasted number of units by the current price. For many items the price doesn't show up. The solution I have is to create a new table that contains every item with its current price for all the dates in my date table. For example:
Item Table:
| Item | Price |
| A | 30 |
| B | 20 |
| C | 60 |
Date Table Covers every day from 2019 until December 31st 2022
To shorten the example for two days I would expect my new table to be:
| Date | Item | Price |
| June, 22, 2021 | A | 30 |
| June, 22, 2021 | B | 20 |
| June, 22, 2021 | C | 60 |
| June, 23, 2021 | A | 30 |
| June, 23, 2021 | B | 20 |
| June, 23, 2021 | C | 60 |
How do I build this date, item and price table?
Thanks,
Solved! Go to Solution.
My Power BI gut says, what you are trying to do can be more efficently done with proper joining, or some code magic... but here's what you need for now. Hope it works!
Proud to give back to the community!
Thank You!
Hi,
Assuming you have your Calendar Table built in the Query Editor, go to the Items Table in the Query Editor > Add Column > Custom Column and write this formula
=Calendar[Date]
Hope this helps.
Hi @LanceTDL,
If you want to expand table records with a specific category, you can try to use CROSSJOIN functions and it will return a repeating table that includes records from two parameter tables.
Power BI DAX #1: The Magic of CROSSJOIN | by Michael Olafusi | Medium
Regards,
Xiaoxin Sheng
My Power BI gut says, what you are trying to do can be more efficently done with proper joining, or some code magic... but here's what you need for now. Hope it works!
Proud to give back to the community!
Thank You!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |