Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Goodnight!
I'm trying to create a measure that basically multiplies a column by a rate obtained from a division, but the total return is not the sum of all fields as shown in print:
How can I solve this problem? I'm gonna try to group the data with summarize, but I dont know if it's the right way.
The value that I want is that:
My sample data and pbix (link)
Here how I created the measures:
_Approveds = SUM(DashFraude[approved])
_Bads = CALCULATE(SUM('DashFraude'[fraud]),DashFraude[approved]=1)
_TxFraudApproveds = [_Bads] / [_Approveds]
_Disapprovevds = SUM(DashFraude[disapproved])
_TotalAppDisap = [_Approveds] + [_Disapprovevds]
_InferenceFraudDisapproveds = [_Disapprovevds] * [_TxFraudApproveds]
Thank you for the support.
Solved! Go to Solution.
Hi @fellipea_ao
I hope I understood your requirement to total the [_InferenceFraudDisapproved] measure.
I created a new [_InferenceFraudDisapproveds 2] measure.
Original:
_InferenceFraudDisapproveds = [_Disapprovevds] * [_TxFraudApproveds]
Mine:
_InferenceFraudDisapproveds 2 =
SUMX(
VALUES( DashFraude[fx_score1] ),
[_Disapprovevds] * [_TxFraudApproveds]
)
20240424-dash-sample-test-MINE.pbix
Let me know how that works.
Hi @fellipea_ao
I hope I understood your requirement to total the [_InferenceFraudDisapproved] measure.
I created a new [_InferenceFraudDisapproveds 2] measure.
Original:
_InferenceFraudDisapproveds = [_Disapprovevds] * [_TxFraudApproveds]
Mine:
_InferenceFraudDisapproveds 2 =
SUMX(
VALUES( DashFraude[fx_score1] ),
[_Disapprovevds] * [_TxFraudApproveds]
)
20240424-dash-sample-test-MINE.pbix
Let me know how that works.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
74 | |
63 | |
51 | |
48 |
User | Count |
---|---|
211 | |
86 | |
64 | |
59 | |
56 |