Hi everyone,
I want to create a measure which calculates sales based on working days in different countries (three country: DE,AT,CH).
There are two major tables for sales and calender in my data set.
The sales table includes all information about orders in each country and calender table includes all dates and three binary columns for working days in each country.
Sales Table:
date | country | Sales |
01.01.2022 | AT | 20€ |
01.01.2022 | AT | 50€ |
01.01.2022 | CH | 10€ |
02.01.2022 | DE | 20€ |
... | ... | ... |
Caleder Table:
date | working_day_DE | working_day_AT | working_day_CH |
01.01.2022 | 0 | 1 | 1 |
02.01.2022 | 1 | 0 | 0 |
03..01.2022 | 1 | 1 | 1 |
... | ... | ... | ... |
Now I want to create a measure which calculates avrage of Sales in each country divided by SUM of working days in year/month.
I would appreciate, if someone can help me with this issue.
@beheshtifarid , Try a new measure like
AverageX(Values(Sales[Country]), calculate(Sum(Sales[Sales]) , filter(calendar, calendar[working_day_DE] =1)))
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
96 | |
79 | |
43 | |
32 | |
29 |
User | Count |
---|---|
133 | |
94 | |
88 | |
46 | |
42 |