March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
https://drive.google.com/file/d/1I2kagPkXb5juYgkxIrIh1ap14DL_xCdH/view?usp=sharing
Hello, I am studying Power BI on my own and applying it to my work, but there are many restrictions using Power BI with the in-house DB, so if I knew DAX well, it will be solved.
Data establishes weekly sales plans for each week as above, but due to changes in past sales result, it also manages real sales result data by creating an additional Planweek called 999952. I made New Measures as below, and I would like to make a New Measure that combines Sales result and Market Fcst. I already mada Result+MKT Fcst, but the value is correct on only a monthly basis and is not correct on yearly, quaterly. Second problem, I want to see the sales result in 2011 when I select Plan week 220205, 220206.
MKT_FCST = CALCULATE(sum(Sheet1[Qty]),Sheet1[Measure] in {"Market Fcst"})
Result = CALCULATE(sum(Sheet1[Qty]),Sheet1[Measure]="Allocation",Sheet1[W0] in {"Result_F"},all(Sheet1[Plan_week]))
Reuslt+MKT Fcst = Var Check = AVERAGE(Sheet1[Target_week])
Var Plan = [MKT_FCST]
Var Result = Indicator[Result]
Return if(AVERAGE(Sheet1[Plan_week])>Check,Result,Plan)
I couldn't change the original structure of the table, so I'd like to solve it with New Measure. Please help me
Question: 1. How to make Result + MKT Fcst for displaying the MKT_FCST value other than Result_F when Plan week is larger than Target week
2. When selecting 202205, 202206 only, output Result + MKT Fcst in 2021
Hi, @Yoo
Not sure if my understanding is correct, please check if this is the result you want.
MKT_FCST 2 = CALCULATE(sum(Sheet1[Qty])
,Sheet1[Measure] ="Market Fcst", Sheet1[W0] <>"Result_F")
Reuslt+MKT Fcst = Var Check = AVERAGE(Sheet1[Target_week])
Var Plan = [MKT_FCST]
Var Result = Indicator[MKT_FCST 2]
Return if(AVERAGE(Sheet1[Plan_week])>Check,Result,Plan)
Is this the result you want for question 1? I didn't understand question 2, can you provide a sample diagram of the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |