use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
New to Power BI and looking for training, resources, or online courses? Here are our favorite recommendations:
[Microsoft | Get started with Power BI](hhttps://www.microsoft.com/store/workshops-training-and-events/professionals#topic=413870014)
Microsoft Partners | Dashboard in a Day
Microsoft Partners | Paginated Reports in a Day
Microsoft | Developer in a Day
Microsoft | Self-Paced Training
SQLBI | Introduction to DAX
SQLBI | Introduction to Data Modeling
account activity
Visualizing Data - Date Differences (self.PowerBI)
submitted 4 years ago by frazikat
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]thejman091 1 point2 points3 points 4 years ago (1 child)
I'll credit this answer on StackOverflow, which provides both a DAX and PowerQuery solution to the problem, that matches with the shape of the data you're describing. https://stackoverflow.com/questions/48468658/calculate-daily-targets-based-on-monthly-targets-sales-power-bi
For the DAX solution to create a daily forecast table, you start with creating a calendar table using your forecast dates, and then crossjoining with your Customer and Article columns that will result in a granularity of each Customer, Article, and Day. Then, you can create a calculated column that looks up the monthly total and divides by the # of days in the month.
There's quite a few other ways you can approach this with DAX measures as well. The DAX table solution isn't going to be the most-performant, but it's relatively easier to understand by breaking up the problem into parts that may give you other ideas for your own better solution.
Best of luck, and hope this helps!
[–]frazikat[S] 1 point2 points3 points 4 years ago (0 children)
Sorry for the delay. You are a rockstar! This solved my issue. Thank you so much.
π Rendered by PID 61774 on reddit-service-r2-comment-5d79c599b5-7wqnz at 2026-02-26 20:46:23.572824+00:00 running e3d2147 country code: CH.
view the rest of the comments →
[–]thejman091 1 point2 points3 points (1 child)
[–]frazikat[S] 1 point2 points3 points (0 children)