Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi Everyone,
I'm making a Date Table and in it I want to include a calculated Column "Total Order Amount" from 'Orders' Table where "Total Order Amount" column equals Orders[OrderQuantity] * Orders[SalesPrice]:
I used this script to create the Date Table (with the extra calculated column):
But when I do this the "Total Order Amount" Values on the new table are just the whole of all orders combined:
Any way to fix this so the "Total Order Amount" is [OrderQuantity] * [OrderSales] for each particular date instead of the grand total?
Any help would be greatly appreciated.
Thanks----
Solved! Go to Solution.
Hi @MichaelG1117 ,
Based on your description, Please try code as below to create a Calculated Column.
My Sample:
Table =
var _table=
ADDCOLUMNS(
CALENDAR(DATE(2013,1,1),DATE(2013,1,31)),
"Weeknum", WEEKNUM([Date]),
"Week Number & Year", "W" & WEEKNUM([Date]) & " " &YEAR([Date]),
"WeekYearNumber", YEAR([Date]) & 100 + WEEKNUM([Date])
)
return
ADDCOLUMNS(
_table,
"Total Order Amount",
SUMX(
FILTER(ALL(Orders),
'Orders'[OrdeDaterKey]=EARLIER([Date])),[OrderQuantity]*[SalesPrice])
)
Result is as below.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @MichaelG1117 ,
Based on your description, Please try code as below to create a Calculated Column.
My Sample:
Table =
var _table=
ADDCOLUMNS(
CALENDAR(DATE(2013,1,1),DATE(2013,1,31)),
"Weeknum", WEEKNUM([Date]),
"Week Number & Year", "W" & WEEKNUM([Date]) & " " &YEAR([Date]),
"WeekYearNumber", YEAR([Date]) & 100 + WEEKNUM([Date])
)
return
ADDCOLUMNS(
_table,
"Total Order Amount",
SUMX(
FILTER(ALL(Orders),
'Orders'[OrdeDaterKey]=EARLIER([Date])),[OrderQuantity]*[SalesPrice])
)
Result is as below.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks!
@MichaelG1117 Maybe try using RELATEDTABLE in your SUMX although it may not work as the relationship may not technically exist yet as the table is being calculated (created). Could also explore dropping the CALCULATE.
I tried taking out the SumX, did not work.
Tried Relatedtable but was unsure what the script would be --- didn't work
@MichaelG1117 Keep the SUMX. Drop the CALCULATE. Use RELATED or RELATEDTABLE as the first argument for your SUMX
HI, @MichaelG1117
I think it is correct because there are no filter part present in table from where total order amount column filter means your column(total order amount) has no data lineage for that table so you have to provide some filter part like product code or product name or orderquantity(as above in your first image) or something from which your column(total order amount) filter according to that
User | Count |
---|---|
21 | |
20 | |
12 | |
10 | |
8 |
User | Count |
---|---|
30 | |
28 | |
14 | |
13 | |
11 |