Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
i'm just taken this course and not able to solve this below question. can someone help me to solve this below request.
Create a calculated table.
Create a new calculated table called Yearly Sales by Color that contains the following data:
All data from the Sales table,
All Product Colordata from the Product table,
And all Yearly values from the Date table.
Note down the total number of columns in the table.
Tip: Create the calculated table using the ADDCOLUMNS and RELATED DAX functions.
Solved! Go to Solution.
Hello,
You may use this code:
Yearly Sales by Color =
ADDCOLUMNS(
Sales,
"ProductColor", RELATED(Product[Color]),
"Year", YEAR(RELATED(Date[Date]))
).
If it is your answer, please mark this as a solution
Hello,
You may use this code:
Yearly Sales by Color =
ADDCOLUMNS(
Sales,
"ProductColor", RELATED(Product[Color]),
"Year", YEAR(RELATED(Date[Date]))
).
If it is your answer, please mark this as a solution
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |