Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello,
I have a measure that works properly on each row, but does not show the total for all of the rows in the table. I need to multiple MBOE by NRI and divide the measure by 100. The Data Category for this measure is greyed out, so i can't force it to show a Sum.
NRI_MBOE = IF(HASONEVALUE('Cost Centers'[Cost Center Key]),
CALCULATE(VALUES(EUR_BOE[MBOE])*VALUES('Well Info'[NRI])/100),
BLANK())
Thanks for any suggestions.
Hey,
your measure does not a value for the Total because there is no one value for
HASONEVALUE('Cost Centers'[Cost Center Key])
Try this measure instead:
IF(HASONEVALUE('Cost Centers'[Cost Center Key]), CALCULATE(VALUES(EUR_BOE[MBOE])*VALUES('Well Info'[NRI])/100), ,//HASONEVALUE returns false CALCULATE( SUM(EUR_BOE[MBOE]) ,ALLSELECTED('Cost Centers'[Cost Center Key]) ) * CALCULATE( SUM('Well Info'[NRI]) ,ALLSELECTED('Cost Centers'[Cost Center Key]) ) /100 )
Hopefully this provides what you are looking for. Otherwise, please prepare a pbix with sample data, upload the file to onedrive or ropbox and share the link.
Regards,
Tom
Thank you Tom! This got me closer. There is a total showing up now, but it is not the correct total.
I figured out that the calculation for NRI_MBOE is taking the total for each column, so it is using the sum of the NRI (which i don't want). I should back up and start from the beginning on my full needs...
I need a Total Drillbit F&D = (Total sum of WI_DCC/Total sum of NRI_MBOE/1000)
*This measure should take the sum of WI_DCC coumn, divide by sum of NRI_MBOE column & divide by 1000.
NRI_MBOE = IF(HASONEVALUE('Cost Centers'[Agile Cost Center Key]), CALCULATE(VALUES(EUR_BOE[MBOE])*VALUES('Well Info'[NRI])/100)
, //HASONEVALUE returns false
CALCULATE(
SUM(EUR_BOE[MBOE])
, ALLSELECTED('Cost Centers'[Agile Cost Center Key])
)
*
CALCULATE(
SUM('Well Info'[NRI])
,ALLSELECTED('Cost Centers'[Agile Cost Center Key])
)
/100
)
*I don't want the total to calculate using the sum totals for NRI, but it should use the sum total for the MBOE column. RIght now, this result is correct by row, just not the total.
WI_DCC = IF(HASONEVALUE('Cost Centers'[Agile Cost Center Key]),
CALCULATE([Actual]*VALUES('Well Info'[WI]) /100),
BLANK())
*I need the total for this also, but as a sum of the existing rows for WI_DCC.
Once i have the correct column totals for NRI_MBOE & WI_DCC, then i can should be able to generate the correct Drillbit F&D measure.
I hope this makes sense!
Hi @bheinrich,
As the formulas you shared, there are three tables in your model I think. could you please share the sample data and tell me the relationship between tables?
Regards,
Frank
Hey,
I'm sorry for that, please consider to prepare a pbix with sample data, and share the link to the uploaded file (uploaded to onedrive or dropbox)
Regards,
Tom
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |