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.
Hi all,
I am new to DAX . So I am trying to build the `DAX Value 2` column. Below is what I am expecting for `DAX Value 2` column.
For the 'category' C, I want it to be the value of Category B on the measure instead of a running total.
Notes: both the DAX Value 1 and DAX Value 2 will be a Measure instead of from a Table
Solved! Go to Solution.
Hi, @wer1231
You can try the following steps.
1 Create a Calculated column with Measure DAX Value1
ColumnFromValue1 = [DAX_Value1]
2 Create a Measure
Accumulate =
VAR res =
CALCULATE (
SUMX ( 'Table', 'Table'[ColumnFromValue1] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Index] <= MAX ( 'Table'[Index] ) )
)
VAR r1 =
LOOKUPVALUE ( 'Table'[ColumnFromValue1], 'Table'[Category], "A" )
VAR r2 =
LOOKUPVALUE ( 'Table'[ColumnFromValue1], 'Table'[Category], "B" )
VAR r3 = r1 + r2
RETURN
IF ( SELECTEDVALUE ( 'Table'[Category] ) = "C", r3, res )
The result looks like this:
Best Regards,
Caiyun Zheng
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If not, please consider providing a sample removing sensitive data.
Hi, @wer1231
You can try the following steps.
1 Create a Calculated column with Measure DAX Value1
ColumnFromValue1 = [DAX_Value1]
2 Create a Measure
Accumulate =
VAR res =
CALCULATE (
SUMX ( 'Table', 'Table'[ColumnFromValue1] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Index] <= MAX ( 'Table'[Index] ) )
)
VAR r1 =
LOOKUPVALUE ( 'Table'[ColumnFromValue1], 'Table'[Category], "A" )
VAR r2 =
LOOKUPVALUE ( 'Table'[ColumnFromValue1], 'Table'[Category], "B" )
VAR r3 = r1 + r2
RETURN
IF ( SELECTEDVALUE ( 'Table'[Category] ) = "C", r3, res )
The result looks like this:
Best Regards,
Caiyun Zheng
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If not, please consider providing a sample removing sensitive data.
Hi,
What result are you expecting?
Updated my post. Let me know if it is still unclear....
Sorry for the confusion. The `DAX Value 2` column is what I am expecting to achieve. Will modify my question right now...
first try on the table tools theres a quick measure pane, you can find there a pre defined running total function just specify the parameters field for it and should get you on the road.
Proud to be a Super User!
But I am looking to get the previous row value for one specific row, if that make sense. PS: have modified my question above.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
96 | |
69 | |
43 | |
38 | |
29 |
User | Count |
---|---|
154 | |
93 | |
63 | |
42 | |
41 |