Forum Discussion
Jerry1985
4 years agoFrequent Visitor
Average Ops Days.
I am trying to create a measure for the following: It takes total Sales / Ops days = Average daily Sales My current measure for Ops days is as follows: Ops Days = CALCULATE(SUM('PowerBI Dat...
- 4 years ago
Hi,
Please try writing a measure like below, and replace the current one with the below.
fixed measure: = IF ( HASONEVALUE ( 'Country table'[Country column] ), [Your Ops Days measure], AVERAGEX ( VALUES ( 'Country table'[Country column] ), [Your Ops Days measure] ) )
Jihwan_Kim
4 years agoSuper User
Hi,
Please try writing a measure like below, and replace the current one with the below.
fixed measure: =
IF (
HASONEVALUE ( 'Country table'[Country column] ),
[Your Ops Days measure],
AVERAGEX ( VALUES ( 'Country table'[Country column] ), [Your Ops Days measure] )
)
- Jerry19854 years agoFrequent Visitor
I ended up using the back syntax as i needed the filters to calculate when other filters were active too.
I used this syntax and it works 🙂 thanks!!AVERAGEX(VALUES('PowerBI Data'[Country2]),CALCULATE(SUM('PowerBI Data'[Total]),'PowerBI Data'[Revenue Reference]="OpsDay_",'PowerBI Data'[Actual / Plan]="Act",SWITCH('PowerBI Data'[Country],"SG",TRUE(), "MY",TRUE(),"TH",TRUE(),"PH",TRUE(),"VN",TRUE(),"ID",TRUE())))