Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I desperately need advices and help, thank you very much!
I have 2 measures with good values -- -- --
* then need measure 1 to subtract measure 2
* then this subtract result be divided by measure 1
but not matter how (tried long time for days), it returns 0 (zero)
(Please see attached pic and file)
Below are my DAX measures (showing no errors in my PBI desktop) I have applied:
Below are all my DAX formular, no error shows me:
VolumeCompletionRate =
VAR StringA =
Calculate(
COUNTROWS('2FY PR'),
'2FY PR'[Creation Date] >= 2022-04-01 &&
'2FY PR'[Creation Date] <= 2023-03-31 &&
'2FY PR'[PR Type] = "New PR")
VAR StringB =
Calculate(
COUNTROWS('2FY PR'),
'2FY PR'[Creation Date] >= 2022-04-01 &&
'2FY PR'[Creation Date] <= 2023-03-31 &&
'2FY PR'[PR Type] = "PR Amendment")
VAR StringC =
Calculate(
COUNTROWS('2FY PR'),
'2FY PR'[Creation Date] >= 2022-04-01 &&
'2FY PR'[Creation Date] <= 2023-03-31 &&
'2FY PR'[PR Type] =
"New PR"
|| '2FY PR'[PR Type] =
"PR Amendment")
RETURN
[Percentage] = DIVIDE(StringA + StringB), StringC, 0 )
***********************************************
Outstanding # =
CALCULATE(
COUNTROWS('2FY PR'),
KEEPFILTERS('2FY PR'[Requisition Status]
IN{"In review", "Validate Business Line Processing", "Workload Manager Processing"}))
Outstanding&NonOutstanding # =
CALCULATE(
COUNTROWS('2FY PR'),
KEEPFILTERS('2FY PR'[Requisition Status]
IN{"Approved", "In review", "Validate Business Line Processing", "Workload Manager Processing"}))
For % #
%Completion# = Calculate(
DIVIDE([Outstanding&NonOutstanding #]-[Outstanding #],[Outstanding&NonOutstanding #]))
*******************
Outstanding $ =
SUMX(
FILTER(
'2FY PR',
NOT(ISBLANK(
'2FY PR'[Requisition Status])) ||
'2FY PR'[Requisition Status] <> "In review" ||
'2FY PR'[Requisition Status] <>"Validate Business Line Processing" ||
'2FY PR'[Requisition Status]<> "Workload Manager Processing"),
'2FY PR'[Filtered Req Amount (Absolute Value)])
Outstanding&NonOutstanding $ =
SUMX(
FILTER(
'2FY PR',
NOT(ISBLANK(
'2FY PR'[Requisition Status])) &&
'2FY PR'[Requisition Status] <> "Approved" &&
'2FY PR'[Requisition Status] <> "In review" &&
'2FY PR'[Requisition Status] <>"Validate Business Line Processing" &&
'2FY PR'[Requisition Status] <> "Workload Manager Processing"),
'2FY PR'[Filtered Req Amount (Absolute Value)])
For % $
%Completion$ = Calculate(
DIVIDE([Outstanding&NonOutstanding $]-[Outstanding $],[Outstanding&NonOutstanding $]))
generally you cannot measure a measure. Re-implement the desired business logic completely inside one measure.
Some of yours can be refactored for better performance. Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
44 | |
41 | |
39 | |
36 |