Hi all,
I have a unusual calcuation as below DAX formula. (AMAZ50 with different calculation logic).
I can get correct sub total but I still cannot get a correct grand total given a few round testing.
Sorry for I cannot upload a sample file due to large file size, but can anyone give me some suggestion?
Solved! Go to Solution.
Hi @chiu2003 ,
Try this measure to get the correct grand total:
Total= SUMX(VALUES(Customer Group), Outstanding Order will ship by EOM)
I hope this helps!
Hi @chiu2003 ,
Try this measure to get the correct grand total:
Total= SUMX(VALUES(Customer Group), Outstanding Order will ship by EOM)
I hope this helps!
Thanks. It is working and thanks for that simple last step.
Do you think I can further improve the DAX of "Outstanding Order will ship by EOM" as we may have some new Amazon code in further?
The behind logic is that only AMAZ50 with own calculation logic and the rest customers will follow the Other logic.
Hi @chiu2003 ,
In the return statement...you could do this:
Return IF(Selectedvalue(Customer Group)= "AMAZ50", AMAZ50, Others)
Kudos are always appreciated! Thanks
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
99 | |
37 | |
36 | |
29 | |
17 |
User | Count |
---|---|
110 | |
51 | |
46 | |
33 | |
18 |